484950515253545556
* create a new node with ID and parser as reference */ public SimpleNode(final AtFormulaParserImpl p, final int i) { id = i; parser = p; Token t = p.token; codeLine = t.beginLine; codeColumn = t.beginColumn; }