BadScript 2
Loading...
Searching...
No Matches
BadAddAssignExpressionCompiler.cs
Go to the documentation of this file.
2
7
11public class BadAddAssignExpressionCompiler : BadBinaryExpressionCompiler<BadAddAssignExpression>
12{
14 public override void CompileBinary(BadExpressionCompileContext context, BadAddAssignExpression expression)
15 {
16 context.Emit(BadOpCode.AddAssign, expression.Position);
17 }
18}
BadSourcePosition Position
The source Position of the Expression.
override void CompileBinary(BadExpressionCompileContext context, BadAddAssignExpression expression)
Contains the Self-Assigning Math Expressions for the BadScript2 Language.
BadOpCode
Defines the Operations that the BadVirtualMachine can execute.
Definition BadOpCode.cs:7