示例#1
0
文件: Symbols.cs 项目: zwinter/ET
 public AsyncMethodBodyDebugInformation(Instruction catchHandler)
     : base(KindIdentifier)
 {
     this.catch_handler = new InstructionOffset(catchHandler);
 }
示例#2
0
文件: Symbols.cs 项目: zwinter/ET
 public StateMachineScope(Instruction start, Instruction end)
 {
     this.start = new InstructionOffset(start);
     this.end   = end != null ? new InstructionOffset(end) : new InstructionOffset();
 }
示例#3
0
文件: Symbols.cs 项目: zwinter/ET
 public InstructionOffset(int offset)
 {
     this.instruction = null;
     this.offset      = offset;
 }