xref: /plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/States/RuleStartState.php (revision 04fd306c7c155fa133ebb3669986875d65988276)
1<?php
2
3declare(strict_types=1);
4
5namespace Antlr\Antlr4\Runtime\Atn\States;
6
7final class RuleStartState extends ATNState
8{
9    /** @var RuleStopState|null */
10    public $stopState;
11
12    /** @var bool */
13    public $isLeftRecursiveRule = false;
14
15    public function getStateType() : int
16    {
17        return self::RULE_START;
18    }
19}
20