Represents a mutation to the code. This should be in the order that the changes should be applied (commonly, in reverse order).

interface CodeMutation {
    nodeChanges: NodeChange[];
    operatorId: string;
}

Properties

nodeChanges: NodeChange[]
operatorId: string