Home
last modified time | relevance | path

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

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DRuleContext.php214 public function toStringTree(?array $ruleNames = null) : string function in Antlr\\Antlr4\\Runtime\\RuleContext
216 return Trees::toStringTree($this, $ruleNames);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DTree.php44 public function toStringTree(?array $ruleNames = null) : string; function
H A DTrees.php25 public static function toStringTree(Tree $tree, ?array $ruleNames = null) : string function in Antlr\\Antlr4\\Runtime\\Tree\\Trees
42 $result .= ($i > 0 ? ' ' : '') . self::toStringTree($child, $ruleNames);
H A DParseTree.php50 * Specialize toStringTree so that it can print out more information
55 public function toStringTree(?array $ruleNames = null) : string; function
H A DTerminalNodeImpl.php81 public function toStringTree(?array $ruleNames = null) : string function in Antlr\\Antlr4\\Runtime\\Tree\\TerminalNodeImpl