roll-parser - v3.0.0-beta.0
    Preparing search index...

    Type Alias NodeSpan

    Source span carried by every AST node.

    start is inclusive, end exclusive, both in UTF-16 code units into the original notation string. The parser sets both on every node it produces; they are typed optional so hand-constructed ASTs (tests, programmatic consumers) remain valid without positions.

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