()
| 20 | |
| 21 | export class NonDroppableTarget extends DropTarget { |
| 22 | constructor() { |
| 23 | super(); |
| 24 | this.didCallDrop = false; |
| 25 | this.didCallHover = false; |
| 26 | } |
| 27 | |
| 28 | canDrop() { |
| 29 | return false; |
nothing calls this directly
no outgoing calls
no test coverage detected