(dragment: INode)
| 545 | } |
| 546 | |
| 547 | didDropOut(dragment: INode) { |
| 548 | const { callbacks } = this.componentMeta.advanced; |
| 549 | if (callbacks?.onNodeRemove) { |
| 550 | const cbThis = this.internalToShellNode(); |
| 551 | callbacks?.onNodeRemove.call(cbThis, dragment.internalToShellNode(), cbThis); |
| 552 | } |
| 553 | if (this._parent) { |
| 554 | this._parent.didDropOut(dragment); |
| 555 | } |
| 556 | } |
| 557 | |
| 558 | /** |
| 559 | * 内部方法,请勿使用 |
nothing calls this directly
no test coverage detected