Lines Matching defs:interpreter
115 * their serialized ATN despite having created the interpreter from it.
123 * Get the ATN interpreter used by the recognizer for prediction.
125 * @return ATNSimulator|null The ATN interpreter used by the recognizer
133 protected function interpreter() : ATNSimulator
136 throw new \RuntimeException('Unexpected null interpreter.');
143 * Set the ATN interpreter used by the recognizer for prediction.
145 * @param ATNSimulator|null $interpreter The ATN interpreter used
148 public function setInterpreter(?ATNSimulator $interpreter) : void
150 $this->interp = $interpreter;