Interface SerializableCodeChange

Represents a change in the code. This is a serializable version of NodeChange, which substitute the reference of a node to the indexes in the file.

interface SerializableCodeChange {
    replaceEndIndex: number;
    replaceStartIndex: number;
    replaceWith: string;
}

Properties

replaceEndIndex: number
replaceStartIndex: number
replaceWith: string