Esempio n. 1
0
 public ILInstruction(
     int offset,
     ILInstructionType type,
     ILInstructionFlagsContext flagsContext,
     ushort popCount,
     ushort pushCount,
     object argument)
     : this(offset, type, flagsContext, popCount, pushCount, argument, null)
 {
 }
Esempio n. 2
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;
 }