BadScript 2
Loading...
Searching...
No Matches
BadValueParser.cs
Go to the documentation of this file.
2
4
8public abstract class BadValueParser
9{
15 public abstract bool IsValue(BadSourceParser parser);
16
22 public abstract BadExpression ParseValue(BadSourceParser parser);
23}
The Parser of the Language. It turns Source Code into an Expression Tree.
Base Implementation for all Expressions used inside the Script.
Base class for all Value Parsers.
BadExpression ParseValue(BadSourceParser parser)
Parses the Current Token.
bool IsValue(BadSourceParser parser)
Returns true if the Parser can parse the given Token.
Contains the Expressions for the BadScript2 Language.
Contains the Operators for the BadScript2 Language.