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