xref: /template/strap/vendor/antlr/antlr4-php-runtime/src/Tree/ErrorNode.php (revision aadfa21126c9d260679cbb94217a54bbb242919b)
1<?php
2
3declare(strict_types=1);
4
5namespace Antlr\Antlr4\Runtime\Tree;
6
7interface ErrorNode extends TerminalNode
8{
9    public function __toString() : string;
10}
11