UNPKG

antlr4ng

Version:

Alternative JavaScript/TypeScript runtime for ANTLR4

9 lines (8 loc) 290 B
import { DecisionState } from "./DecisionState.js"; /** * Decision state for `A+` and `(A|B)+`. It has two transitions: * one to the loop back to start of the block and one to exit. */ export declare class PlusLoopbackState extends DecisionState { static readonly stateType = 11; }