(dropResult)
| 2 | |
| 3 | export class NormalTarget extends DropTarget { |
| 4 | constructor(dropResult) { |
| 5 | super(); |
| 6 | this.didCallDrop = false; |
| 7 | this.didCallHover = false; |
| 8 | this.dropResult = dropResult || { foo: 'bar' }; |
| 9 | } |
| 10 | |
| 11 | hover() { |
| 12 | this.didCallHover = true; |
nothing calls this directly
no outgoing calls
no test coverage detected