shell.ts ×3

Frontier kind: Code frontier

unlabeled · c_64dba4967cd7

1070 tests · 10091 LOC · 49 files · introduces 0 tests · 19 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
3 ranges19 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
1563 ranges10091 lines · 49 files · Browse complete extent
All tests (intent)
1070 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: 19 introduced LOC across 3 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

src/vs/base/node/shell.ts 19 introduced LOC · 3 ranges

Open complete file

1 > /*--------------------------------------------------------------------------------------------- shell.ts
2 > * Copyright (c) Microsoft Corporation. All rights reserved.
3 > * Licensed under the MIT License. See License.txt in the project root for license information.
4 > *--------------------------------------------------------------------------------------------*/
5 >
6 > import { userInfo } from 'os';
7 > import * as platform from '../common/platform.js';
8 > import { getFirstAvailablePowerShellInstallation } from './powershell.js';
9 > import * as processes from './processes.js';
10 >
11 > /**
12 > * Gets the detected default shell for the _system_, not to be confused with VS Code's _default_
13 > * shell that the terminal uses by default.
14 > * @param os The platform to detect the shell of.
15 > */
16 export async function getSystemShell(os: platform.OperatingSystem, env: platform.IProcessEnvironment): Promise<string> {
17 if (os === platform.OperatingSystem.Windows) {
25 return getSystemShellUnixLike(os, env);
26 }
27 > shell.ts
28 > let _TERMINAL_DEFAULT_SHELL_UNIX_LIKE: string | null = null;
29 function getSystemShellUnixLike(os: platform.OperatingSystem, env: platform.IProcessEnvironment): string {
30 // Only use $SHELL for the current OS
61 return _TERMINAL_DEFAULT_SHELL_UNIX_LIKE;
62 }
63 > shell.ts
64 > let _TERMINAL_DEFAULT_SHELL_WINDOWS: string | null = null;
65 async function getSystemShellWindows(): Promise<string> {
66 if (!_TERMINAL_DEFAULT_SHELL_WINDOWS) {