Traqula
    Preparing search index...

    Interface SourceLocationStringReplace

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

    interface SourceLocationStringReplace {
        end: number;
        newSource: string;
        sourceLocationType: "stringReplace";
        start: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    end: number

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

    newSource: string

    The string that will replace the given range in the original source.

    sourceLocationType: "stringReplace"
    start: number

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