Ejemplo n.º 1
0
 /// <summary>
 /// Emits code for this expression
 /// </summary>
 /// <param name="ilGen">IL generator object</param>
 /// <param name="scope">The scope of this expression</param>
 public override void EmitCode(ILGenerator ilGen, Scope scope)
 {
     // Variable references are emitted by the symbol table because different variables are referenced with
     // different instructions and only the symbol table knows how to correctly refer them
     scope.EmitVariableReference(name, ilGen);
 }