299300301302303304305306307308309310
/* * eat the args */ int i = 0; Token t = null; Token tLast = null; while( i < numArgs ) { args[i] = ""; /*
244245246247248249250251252253254255
/* * this assumes that we are passed in the root * node of the code block */ Token t = rootNode.getFirstToken(); Token tLast = rootNode.getLastToken(); /* * now, run down the part of the tree bounded by * our first and last tokens */
185186187188189190191192193194195
// All additional methods public String literal() { Token t = first; StringBuffer sb = new StringBuffer(t.image); while (t != last) { t = t.next;
105106107108109110111112113114115
} public void jjtOpen() { super.jjtOpen(); Token t = first; /* * the stringlit is set at template parse time, so we can * do this here for now. if things change and we can somehow * create stringlits at runtime, this must
5455565758596061626364
*/ private Object showNode(Node node, Object data) { String tokens = ""; String special = ""; Token t; if (showTokens) { t = node.getFirstToken();