101102103104105106107108109110
return node; } @Override public EachDefNode startEachDirective(String var, ArrayList<String> list) { EachDefNode node = new EachDefNode(var, list); nodeStack.peek().appendChild(node); nodeStack.push(node); return node; }
109110111112113114115116117118
return node; } @Override public EachDefNode startEachDirective(String var, String listVariable) { EachDefNode node = new EachDefNode(var, listVariable); nodeStack.peek().appendChild(node); nodeStack.push(node); return node; }
100101102103104105106107108109
108109110111112113114115116117