Home
last modified time | relevance | path

Searched refs:notifyErrorListeners (Results 1 – 3 of 3) sorted by relevance

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/Listeners/
H A DDiagnosticErrorListener.php16 * are made by calling {@see Parser::notifyErrorListeners()} with the appropriate
70 $recognizer->notifyErrorListeners($msg);
89 $recognizer->notifyErrorListeners($msg);
108 $recognizer->notifyErrorListeners($msg);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Error/
H A DDefaultErrorStrategy.php134 * - All other types: calls {@see Parser#notifyErrorListeners} to report
155 $recognizer->notifyErrorListeners($e->getMessage(), $e->getOffendingToken(), $e);
344 $recognizer->notifyErrorListeners($msg, $e->getOffendingToken(), $e);
370 $recognizer->notifyErrorListeners($msg, $e->getOffendingToken(), $e);
386 $recognizer->notifyErrorListeners($msg, $e->getOffendingToken(), $e);
403 * recovery mode, followed by calling {@see Parser::notifyErrorListeners}.
425 $recognizer->notifyErrorListeners($msg, $t);
441 * recovery mode, followed by calling {@see Parser::notifyErrorListeners()}.
462 $recognizer->notifyErrorListeners($msg, $t);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DParser.php106 * incremented each time {@see Parser::notifyErrorListeners()} is called.
366 * incremented each time {@see Parser::notifyErrorListeners()} is called.
368 * @see Parser::notifyErrorListeners()
479 final public function notifyErrorListeners( function in Antlr\\Antlr4\\Runtime\\Parser