@configuredthings/rdp.js - v0.7.0
    Preparing search index...

    Type Alias ParseEvent

    ParseEvent:
        | { kind: "enter"; position: number; production: string }
        | { kind: "exit"; matched: boolean; position: number; production: string }
        | { kind: "error"; message: string; position: number }

    A single event emitted during a parse trace.

    • enter — the parser entered a production method
    • exit — the parser returned from a production method
    • error — the parser threw a parse error