Example #1
0
 // Set constructor.
 public BlockASTNode(StatementASTNode statementList)
     : this()
 {
     this.statementList = statementList;
 }
Example #2
0
 // Default costructor, inits values
 public BlockASTNode()
     : base(ASTNodeType.ASTTYPE_BLOCK)
 {
     statementList  = null;
     isProgramBlock = false;
 }