Exemplo n.º 1
0
 public ILInstruction(
     int offset,
     ILInstructionType type,
     ILInstructionFlagsContext flagsContext,
     ushort popCount,
     ushort pushCount,
     object argument,
     SequencePoint sequencePoint)
 {
     Offset          = offset;
     InstructionType = type;
     FlagsContext    = flagsContext;
     PopCount        = popCount;
     PushCount       = pushCount;
     Argument        = argument;
     SequencePoint   = sequencePoint;
 }
Exemplo n.º 2
0
 public ILInstruction(
     int offset,
     ILInstructionType type,
     ILInstructionFlagsContext flagsContext,
     ushort popCount,
     ushort pushCount,
     object argument)
     : this(
         offset,
         type,
         flagsContext,
         popCount,
         pushCount,
         argument,
         SequencePoint.Invalid)
 {
 }