public TryCatchFinallyNode(SourcePosition pos, BlockNode tryBlock, CatchNode catchNode, BlockNode finallyBlock)
     : base(pos)
 {
     this.tryBlock = tryBlock;
     this.catchNode = catchNode;
     this.finallyBlock = finallyBlock;
 }
 public TryCatchFinallyNode(SourcePosition pos, BlockNode tryBlock, CatchNode catchNode, BlockNode finallyBlock)
     : base(pos)
 {
     this.tryBlock     = tryBlock;
     this.catchNode    = catchNode;
     this.finallyBlock = finallyBlock;
 }
Esempio n. 3
0
 public CatchNode(SourcePosition pos, VariableNode errorVariable, BlockNode catchBlock)
     : base(pos)
 {
     this.errorVariable = errorVariable;
     this.catchBlock    = catchBlock;
 }
Esempio n. 4
0
 public CatchNode(SourcePosition pos, VariableNode errorVariable, BlockNode catchBlock)
     : base(pos)
 {
     this.errorVariable = errorVariable;
     this.catchBlock = catchBlock;
 }