(action: Action)
| 64 | } |
| 65 | |
| 66 | private disconnectAction(action: Action) { |
| 67 | const binding = this.bindingsByAction.get(action) |
| 68 | if (binding) { |
| 69 | this.bindingsByAction.delete(action) |
| 70 | this.delegate.bindingDisconnected(binding) |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | private disconnectAllActions() { |
| 75 | this.bindings.forEach((binding) => this.delegate.bindingDisconnected(binding, true)) |
no test coverage detected