Interface Lexer

interface Lexer {
    definition: TokenTypeDictionary;
    tokenize(text: string, options?: TokenizeOptions): LexerResult;
}

Implemented by

Properties

Methods

Properties

definition: TokenTypeDictionary

Methods