BadScript 2
Loading...
Searching...
No Matches
BadLessExpressionCompiler.cs
Go to the documentation of this file.
2
4
8public class BadLessExpressionCompiler : BadBinaryExpressionCompiler<BadLessThanExpression>
9{
11 public override void CompileBinary(BadExpressionCompileContext context, BadLessThanExpression expression)
12 {
13 context.Emit(BadOpCode.Less, expression.Position);
14 }
15}
BadSourcePosition Position
The source Position of the Expression.
override void CompileBinary(BadExpressionCompileContext context, BadLessThanExpression expression)
Contains the Comparison Expressions for the BadScript2 Language.
BadOpCode
Defines the Operations that the BadVirtualMachine can execute.
Definition BadOpCode.cs:7