Beispiel #1
0
 public AsyncMethodBodyDebugInformation(Instruction catchHandler)
     : base(KindIdentifier)
 {
     this.catch_handler = new InstructionOffset(catchHandler);
 }
Beispiel #2
0
 public StateMachineScope(Instruction start, Instruction end)
 {
     this.start = new InstructionOffset(start);
     this.end   = end != null ? new InstructionOffset(end) : new InstructionOffset();
 }
Beispiel #3
0
 public InstructionOffset(int offset)
 {
     this.instruction = null;
     this.offset      = offset;
 }