Interface LexingReport

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 LexingReport {
    diagnostics: LexingDiagnostic[];
}

Hierarchy (view full)

Properties

Properties

diagnostics: LexingDiagnostic[]