Home
last modified time | relevance | path

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

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DParser.php159 * {@see Parser::createErrorNode(ParserRuleContext, Token)} then
189 $this->context()->addErrorNode($this->createErrorNode($this->context(), $t));
206 * {@see Parser::createErrorNode(ParserRuleContext, Token)}. then
228 $this->context()->addErrorNode($this->createErrorNode($this->context(), $t));
511 * added to the parse tree using {@see Parser::createErrorNode()} then
526 $node = $this->context()->addErrorNode($this->createErrorNode($this->context(), $o));
562 public function createErrorNode(ParserRuleContext $parent, Token $t) : ErrorNode function in Antlr\\Antlr4\\Runtime\\Parser