storage.ts ×5

Frontier kind: Code frontier

unlabeled · c_ea81ce652a2c

416 tests · 12578 LOC · 50 files · introduces 0 tests · 22 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
5 ranges22 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
1815 ranges12578 lines · 50 files · Browse complete extent
All tests (intent)
416 testsBrowse complete intent

Neighbourhood graph

The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.

Introduced files, introduced tests, and structurally relevant concept specialization

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

No tests are introduced at this concept. Its intent tests are introduced by other concepts.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

1 file ranked by introduced lines: 22 introduced LOC across 5 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

src/vs/platform/storage/common/storage.ts 22 introduced LOC · 5 ranges

Open complete file

404
405 protected emitDidChangeValue(scope: StorageScope, event: IStorageChangeEvent): void {
406 > const { key, external } = event; storage.ts
407 >
408 > // Specially handle `TARGET_KEY`
409 > if (key === TARGET_KEY) {
410 >
411 > // Clear our cached version which is now out of date
412 > switch (scope) {
413 > case StorageScope.APPLICATION_SHARED:
414 this._applicationSharedKeyTargets = undefined;
415 break;
416 > case StorageScope.APPLICATION: storage.ts
417 this._applicationKeyTargets = undefined;
418 break;
419 > case StorageScope.PROFILE: storage.ts
420 this._profileKeyTargets = undefined;
421 break;
422 > case StorageScope.WORKSPACE: storage.ts
423 this._workspaceKeyTargets = undefined;
424 break;
425 > } storage.ts
426 >
427 > // Emit as `didChangeTarget` event
428 > this._onDidChangeTarget.fire({ scope });
429 > }
430 >
431 > // Emit any other key to outside
432 > else {
433 > this._onDidChangeValue.fire({ scope, key, target: this.getKeyTargets(scope)[key], external });
434 > }
435 > }
436
437 protected emitWillSaveState(reason: WillSaveStateReason): void {