(dragment: INode)
| 534 | } |
| 535 | |
| 536 | didDropIn(dragment: INode) { |
| 537 | const { callbacks } = this.componentMeta.advanced; |
| 538 | if (callbacks?.onNodeAdd) { |
| 539 | const cbThis = this.internalToShellNode(); |
| 540 | callbacks?.onNodeAdd.call(cbThis, dragment.internalToShellNode(), cbThis); |
| 541 | } |
| 542 | if (this._parent) { |
| 543 | this._parent.didDropIn(dragment); |
| 544 | } |
| 545 | } |
| 546 | |
| 547 | didDropOut(dragment: INode) { |
| 548 | const { callbacks } = this.componentMeta.advanced; |
nothing calls this directly
no test coverage detected