Exemplo n.º 1
0
 public Instruction BoxIfIndexMatches(int index)
 {
     if (index != base._index)
     {
         return(null);
     }
     return(InstructionList.LoadLocalBoxed(index));
 }
Exemplo n.º 2
0
 public void EmitLoadLocalBoxed(int index)
 {
     this.Emit(InstructionList.LoadLocalBoxed(index));
 }
Exemplo n.º 3
0
 public Instruction BoxIfIndexMatches(int index)
 {
     return((index == _index) ? InstructionList.LoadLocalBoxed(index) : null);
 }