hyperlark (TypeScript)
    Preparing search index...

    Variable BasicLexerConst

    BasicLexer: new (
        conf: LexerConf,
    ) => CustomLexer & {
        lex(input: string, parserState?: unknown): Generator<Token>;
    }

    Pure-JS wrap of the native raw scan: the built-in basic lexer as a CustomLexer building block (lex(input) generator over the %ignore-filtered token stream; parserState is ignored).