The Parser of the Language. It turns Source Code into an Expression Tree.
BadExpression ParseExpression(BadExpression? left=null, int precedence=int.MaxValue)
Parses an Expression with a precedence greater than the given precedence. Moves the reader to the nex...
Base Implementation for all Expressions used inside the Script.
BadSourcePosition Position
The source Position of the Expression.
Implements the Logic Not Exression.
int Precedence
The Precedence of the Operator.
Base class for all Unary Prefix Operators.
Implements the Logic Not Operator.
override BadExpression Parse(BadSourceParser parser)
BadLogicNotOperator()
Constructor of the Operator.
Contains the Logic Expressions for the BadScript2 Language.
Contains the Expressions for the BadScript2 Language.
Contains the Logic Operators for the BadScript2 Language.