xref: /plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/States/DecisionState.php (revision 977ce05d19d8dab0a70c9a27f8da0b7039299e82)
1<?php
2
3declare(strict_types=1);
4
5namespace Antlr\Antlr4\Runtime\Atn\States;
6
7abstract class DecisionState extends ATNState
8{
9    /** @var int */
10    public $decision = -1;
11
12    /** @var bool */
13    public $nonGreedy = false;
14}
15