@faubulous/mentor-rdf-parsers
    Preparing search index...

    Interface SparqlVariableSymbol

    A positioned SPARQL variable occurrence, identified by the absolute, 0-based UTF-16 offsets of its ?x / $x token (the sigil is included; end is exclusive). Occurrences that co-refer share a binding id, so grouping a symbol list by binding yields every rename site of one variable — the same shape Triplate's symbols() provides for template parameters and loop variables.

    interface SparqlVariableSymbol {
        binding: number;
        end: number;
        name: string;
        start: number;
    }
    Index
    binding: number

    Co-reference class id (stable within one result, assigned in source order).

    end: number
    name: string

    The variable name without its leading ?/$ sigil.

    start: number