(action: Action)
| 58 | } |
| 59 | |
| 60 | private connectAction(action: Action) { |
| 61 | const binding = new Binding(this.context, action) |
| 62 | this.bindingsByAction.set(action, binding) |
| 63 | this.delegate.bindingConnected(binding) |
| 64 | } |
| 65 | |
| 66 | private disconnectAction(action: Action) { |
| 67 | const binding = this.bindingsByAction.get(action) |
no test coverage detected