Example #1
0
 public void pushStatementList(StatementList stmtList) {
   stmtListStack.push(stmtList);
 }
Example #2
0
 public StatementList getStatementList() {
   return stmtListStack.peek();
 }
Example #3
0
 public void popStatementList(StatementList stmtList) {
   assert (stmtList == getStatementList());
   stmtListStack.pop();
 }