configurationRegistry.ts ×9

Frontier kind: Code frontier

unlabeled · c_61b2e5c06bd2

63 tests · 5701 LOC · 28 files · introduces 0 tests · 20 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
9 ranges20 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
762 ranges5701 lines · 28 files · Browse complete extent
All tests (intent)
63 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: 20 introduced LOC across 9 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

src/vs/platform/configuration/common/configurationRegistry.ts 20 introduced LOC · 9 ranges

Open complete file

695 if (configuration.properties) {
696 for (const key in configuration.properties) {
697 > bucket.add(key); configurationRegistry.ts
698 > const property = this.configurationProperties[key];
699 > if (property?.policy?.name) {
700 this.policyConfigurations.delete(property.policy.name);
701 }
702 > if (property?.policyReference?.name) { configurationRegistry.ts
703 const refs = this.policyReferenceConfigurations.get(property.policyReference.name);
704 if (refs) {
709 }
710 }
711 > delete this.configurationProperties[key]; configurationRegistry.ts
712 > this.removeFromSchema(key, configuration.properties[key]);
713 > }
714 }
715 configuration.allOf?.forEach(node => deregisterConfiguration(node));
893
894 private removeFromSchema(key: string, property: IConfigurationPropertySchema): void {
895 > delete allSettings.properties[key]; configurationRegistry.ts
896 > switch (property.scope) {
897 > case ConfigurationScope.APPLICATION:
898 delete applicationSettings.properties[key];
899 break;
900 > case ConfigurationScope.MACHINE: configurationRegistry.ts
901 delete machineSettings.properties[key];
902 break;
903 > case ConfigurationScope.APPLICATION_MACHINE: configurationRegistry.ts
904 delete applicationMachineSettings.properties[key];
905 break;
906 > case ConfigurationScope.MACHINE_OVERRIDABLE: configurationRegistry.ts
907 delete machineOverridableSettings.properties[key];
908 break;
909 > case ConfigurationScope.WINDOW: configurationRegistry.ts
910 > delete windowSettings.properties[key];
911 > break;
912 > case ConfigurationScope.RESOURCE:
913 > case ConfigurationScope.LANGUAGE_OVERRIDABLE:
914 delete resourceSettings.properties[key];
915 delete this.resourceLanguageSettingsSchema.properties![key];
916 break;
918 > }
919
920 private updateOverridePropertyPatternKey(): void {