示例#1
0
 public FinallyBlock(ExceptionStructure owner, Instruction start)
     : base(owner, start)
 {
 }
示例#2
0
 protected Block(ExceptionStructure owner, Instruction start)
 {
     Owner = owner;
     Start = start;
 }
示例#3
0
 public CatchBlock(ExceptionStructure owner, Instruction start, Type exceptionType)
     : base(owner, start)
 {
     ExceptionType = exceptionType;
 }
示例#4
0
 void ICilWriter.BeginTry()
 {
     _exceptionStructureStack.Push(ExceptionStructure.BeginTry(this));
 }