hyperlark (TypeScript)
    Preparing search index...

    Type Alias CustomLexerParserState

    CustomLexerParserState: { position: number | null } | Set<string>

    The LIVE parser-state key handed to a custom lexer's lex() and mutated between yields: under parser: "lalr" an object whose position is the current LALR state index (null before the first shift); under parser: "earley" one Set of the terminal NAMES the next step can scan, cleared and refilled in place per pull.