Lines Matching defs:ATN
7 use Antlr\Antlr4\Runtime\Atn\ATN;
113 * If this recognizer was generated, it will have a serialized ATN
115 * their serialized ATN despite having created the interpreter from it.
119 throw new \InvalidArgumentException('there is no serialized ATN');
123 * Get the ATN interpreter used by the recognizer for prediction.
125 * @return ATNSimulator|null The ATN interpreter used by the recognizer
143 * Set the ATN interpreter used by the recognizer for prediction.
145 * @param ATNSimulator|null $interpreter The ATN interpreter used
184 * that the ATN interp needs to execute
207 * consistent with the ATN state passed in. This way we always know
208 * where we are in the ATN as the parser goes along. The rule
210 * invoking rules. Combine this and we have complete ATN
229 * Get the {@see ATN} used by the recognizer for prediction.
231 * @return ATN The {@see ATN} used by the recognizer for prediction.
233 abstract public function getATN() : ATN;