Traqula
    Preparing search index...

    Interface IRecognizerContext

    interface IRecognizerContext {
        ruleOccurrenceStack: number[];
        ruleStack: string[];
    }
    Index

    Properties

    ruleOccurrenceStack: number[]

    A copy of the parser's rule occurrence stack at the "time" the RecognitionException occurred. This can be used to help debug parsing errors (How did we get here?).

    ruleStack: string[]

    A copy of the parser's rule stack at the "time" the RecognitionException occurred. This can be used to help debug parsing errors (How did we get here?).