antlr4ng
Version:
Alternative JavaScript/TypeScript runtime for ANTLR4
13 lines (12 loc) • 505 B
TypeScript
import { ATNState } from "./ATNState.js";
import { Transition } from "./Transition.js";
export declare class ActionTransition extends Transition {
ruleIndex: number;
actionIndex: number;
isCtxDependent: boolean;
constructor(target: ATNState, ruleIndex: number, actionIndex?: number, isCtxDependent?: boolean);
get isEpsilon(): boolean;
get transitionType(): number;
matches(_symbol: number, _minVocabSymbol: number, _maxVocabSymbol: number): boolean;
toString(): string;
}