MCPcopy Create free account
hub / github.com/dethcrypto/dethcode / getPart

Function getPart

packages/vscode-host/src/src/vs/workbench/browser/layout.ts:959–966  ·  view source on GitHub ↗
(key: Parts)

Source from the content-addressed store, hash-verified

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)));

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected