antlr4ng
Version:
Alternative JavaScript/TypeScript runtime for ANTLR4
11 lines (10 loc) • 376 B
TypeScript
import { ATNState } from "./ATNState.js";
/**
* The last node in the ATN for a rule, unless that rule is the start symbol.
* In that case, there is one transition to EOF. Later, we might encode
* references to all calls to this rule to compute FOLLOW sets for
* error handling
*/
export declare class RuleStopState extends ATNState {
static readonly stateType = 7;
}