Exemplo n.º 1
0
 static int GetVariableIndex(VariableDefinition variable)
 {
     return variable.Index;
 }
Exemplo n.º 2
0
 public Instruction Create(OpCode opcode, VariableDefinition variable)
 {
     return Instruction.Create(opcode, variable);
 }
Exemplo n.º 3
0
 public void Emit(OpCode opcode, VariableDefinition variable)
 {
     Append(Create(opcode, variable));
 }
Exemplo n.º 4
0
        public static Instruction Create(OpCode opcode, VariableDefinition variable)
        {
            if (variable == null)
                throw new ArgumentNullException("variable");
            if (opcode.OperandType != OperandType.ShortInlineVar &&
                opcode.OperandType != OperandType.InlineVar)
                throw new ArgumentException("opcode");

            return new Instruction(opcode, variable);
        }