| java.lang.Object org.antlr.analysis.NFA
NFA | public class NFA (Code) | | An NFA (collection of NFAStates) constructed from a grammar. This
NFA is one big machine for entire grammar. Decision points are recorded
by the Grammar object so we can, for example, convert to DFA or simulate
the NFA (interpret a decision).
|
INVALID_ALT_NUMBER | final public static int INVALID_ALT_NUMBER(Code) | | |
grammar | public Grammar grammar(Code) | | This NFA represents which grammar?
|
numberToStateList | protected Vector numberToStateList(Code) | | The NFA states in this NFA. Maps state number to NFAState object.
This is a Vector instead of a List because I need to be able to grow
this properly. After talking to Josh Bloch, Collections guy at Sun,
I decided this was easiest solution.
|
|
|