Package com.singularsys.jep.misc.lineNumbering
package com.singularsys.jep.misc.lineNumbering
Classes to allow line and column number information to stored in nodes.
The LineNumberingNodeFactory stores line number information in nodes when they are created and the
LineNumberingShuntingYard is part of the
ConfigurableParser
which stores line numbers during parsing. To set up, you can use
Jep jep = new Jep( new StandardConfigurableParser(), new LineNumberingNodeFactory(), new LineNumberingShuntingYard.LineNumberGrammarParserFactory());
Line numbering starts from line 1 column 1.
-
ClassDescriptionA NodeFactory which adds line numbering information to nodes.Keys for storing line and column numbers in nodesVersion of the shunting yard algorithm which sets lines numbers in the parse tree.Factory for creating
LineNumberingShuntingYardinstances.