(info?: LGraphNode)
| 1160 | |
| 1161 | // used for undo, called before any change is made to the graph |
| 1162 | beforeChange(info?: LGraphNode): void { |
| 1163 | this.onBeforeChange?.(this, info) |
| 1164 | this.canvasAction(c => c.onBeforeChange?.(this)) |
| 1165 | } |
| 1166 | |
| 1167 | // used to resend actions, called after any change is made to the graph |
| 1168 | afterChange(info?: LGraphNode | null): void { |
no test coverage detected