xref: /plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/States/RuleStartState.php (revision 4cadd4f8c541149bdda95f080e38a6d4e3a640ca)
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