xref: /plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/RuleNode.php (revision 04fd306c7c155fa133ebb3669986875d65988276)
1<?php
2
3declare(strict_types=1);
4
5namespace Antlr\Antlr4\Runtime\Tree;
6
7use Antlr\Antlr4\Runtime\RuleContext;
8
9interface RuleNode extends ParseTree
10{
11    public function getRuleContext() : RuleContext;
12}
13