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