(key: Parts)
| 957 | } |
| 958 | |
| 959 | protected getPart(key: Parts): Part { |
| 960 | const part = this.parts.get(key); |
| 961 | if (!part) { |
| 962 | throw new Error(`Unknown part ${key}`); |
| 963 | } |
| 964 | |
| 965 | return part; |
| 966 | } |
| 967 | |
| 968 | registerNotifications(delegate: { onDidChangeNotificationsVisibility: Event<boolean> }): void { |
| 969 | this._register(delegate.onDidChangeNotificationsVisibility(visible => this._onDidChangeNotificationsVisibility.fire(visible))); |
nothing calls this directly
no outgoing calls
no test coverage detected