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