Interface IndentationLexingReport

A custom lexing report that can be produced by the token builder during the lexing process. Adopters need to ensure that the any custom fields are serializable so they can be sent across worker threads.

interface IndentationLexingReport {
    diagnostics: LexingDiagnostic[];
    remainingDedents: IToken[];
}

Hierarchy (view full)

Properties

diagnostics: LexingDiagnostic[]
remainingDedents: IToken[]

Dedent tokens that are necessary to close the remaining indents.