roll-parser - v3.4.0
    Preparing search index...

    Type Alias ErrorSpan

    Source span of an error, in UTF-16 code units into the original notation. start is inclusive; end is exclusive and present only when the error carries a full span (evaluator errors) rather than a single offset.

    type ErrorSpan = {
        end?: number;
        start: number;
    }
    Index
    end?: number
    start: number