@tikoci/centrs
    Preparing search index...

    Interface ExplainData

    interface ExplainData {
        canonical: ExplainCanonical;
        diagnostics: ExplainDiagnostic[];
        evidence: ExplainEvidence[];
        input: ExplainInput;
        runtimeAcceptance: "not-proven";
        spans: ExplainSpan[];
        structure: ExplainStructure;
        symbols: ExplainSymbols;
        tokens?: ExplainToken[];
        values: ExplainValues;
        verdict: ExplainVerdict;
    }
    Index

    Properties

    canonical: ExplainCanonical
    diagnostics: ExplainDiagnostic[]
    evidence: ExplainEvidence[]
    runtimeAcceptance: "not-proven"

    Always "not-proven". /console/inspect accepts forms the runtime rejects, so no amount of offline or probe evidence proves acceptance.

    spans: ExplainSpan[]
    structure: ExplainStructure
    tokens?: ExplainToken[]

    Total, gapless token partition of [0, input.bytes).

    Present only when --tokens is requested, matching the --complete / --schema / --curl facet pattern. Every byte belongs to exactly one token, sorted by start, with no gaps and no overlaps: tokens.map(t => input.slice(t.start, t.end)).join("") === input. The class field is provisional until #264 B5; every byte no analyzer claims is unclassified.