public TypeInstructionWithReflectionEmit(OpCode opCode, int token, Type type)
 {
     this.opCode     = opCode;
     instructionType = instructionTypes[opCode];
     this.token      = token;
     this.type       = type;
 }
Example #2
0
 public TypeInstructionWithMonoCecilCil(OpCode opCode, int token, TypeDefinition type)
 {
     this.opCode     = opCode;
     instructionType = instructionTypes[opCode];
     this.token      = token;
     this.type       = type;
 }