Traqula
    Preparing search index...

    Interface SourceLocationNodeReplace

    SourceLocation type that annotates that the node has been replaced in relation to the original string. It means that this node should be generated, and that the source string from start to end has been changed.

    interface SourceLocationNodeReplace {
        end: number;
        sourceLocationType: "nodeReplace";
        start: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    end: number

    The end of the region in the original source string that this node replaces.

    sourceLocationType: "nodeReplace"
    start: number

    The start of the region in the original source string that this node replaces.