envfile.ts ×3

Frontier kind: Joint frontier

unlabeled · c_9d4474c3f559

1 test · 3476 LOC · 19 files · introduces 1 test · 82 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
3 ranges82 lines · 1 files
Tests
1 test

Contains — complete concept membership

All code (extent)
485 ranges3476 lines · 19 files · Browse complete extent
All tests (intent)
1 testBrowse 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.

Introduced files, introduced tests, and structurally relevant concept specializationenvfile.ts ×1 · 14 introduced LOCenvfile.ts ×1uri.test|title=URI URI#file, win-speciale|occurrence=1, charCode.test|title=CharCode has good values|occurrence=1, +2 · 0 introduced LOCuri.test|title=URI URI#f…utils.ts ×3 · 9 introduced LOCutils.ts ×3lifecycle.ts ×2 · 4 introduced LOClifecycle.ts ×2lifecycle.ts ×1 · 2 introduced LOClifecycle.ts ×1lifecycle.ts ×4 · 8 introduced LOClifecycle.ts ×4lifecycle.ts ×6 · 16 introduced LOClifecycle.ts ×6lifecycle.ts ×1 · 2 introduced LOClifecycle.ts ×1lifecycle.ts ×1 · 2 introduced LOClifecycle.ts ×1lifecycle.ts ×1 · 3 introduced LOClifecycle.ts ×1map.ts ×97 · 3334 introduced LOCmap.ts ×97src/vs/base/common/arrays.ts · 949 LOCcommon/arrays.tssrc/vs/base/common/arraysFind.ts · 226 LOCcommon/arraysFind.tssrc/vs/base/common/assert.ts · 91 LOCcommon/assert.tssrc/vs/base/common/charCode.ts · 450 LOCcommon/charCode.tssrc/vs/base/common/collections.ts · 176 LOCcommon/collections.tssrc/vs/base/common/envfile.ts · 100 LOCcommon/envfile.tssrc/vs/base/common/errors.ts · 357 LOCcommon/errors.tssrc/vs/base/common/functional.ts · 32 LOCcommon/functional.tssrc/vs/base/common/iterator.ts · 194 LOCcommon/iterator.tssrc/vs/base/common/lifecycle.ts · 974 LOCcommon/lifecycle.tssrc/vs/base/common/map.ts · 1016 LOCcommon/map.tssrc/vs/base/common/marshallingIds.ts · 33 LOCcommon/marshallingIds.tssrc/vs/base/common/path.ts · 1589 LOCcommon/path.tssrc/vs/base/common/platform.ts · 281 LOCcommon/platform.tssrc/vs/base/common/process.ts · 76 LOCcommon/process.tssrc/vs/base/common/types.ts · 410 LOCcommon/types.tssrc/vs/base/common/uri.ts · 754 LOCcommon/uri.tssrc/vs/base/test/common/utils.ts · 107 LOCcommon/utils.tssrc/vs/nls.ts · 244 LOCvs/nls.tscharCode.test|title=CharCode has good values|occurrence=1 · introduced test · mocha:v1|namespace=vscode@05c208e9e28d8c1c723fa08f85e2b7a96092e8e5|file=vs/base/test/common/charCode.test|title=CharCode has good values|occurrence=1charCode.test|title=Char…envfile.test|title=parseEnvFile parses|occurrence=1 · introduced test · mocha:v1|namespace=vscode@05c208e9e28d8c1c723fa08f85e2b7a96092e8e5|file=vs/base/test/common/envfile.test|title=parseEnvFile parses|occurrence=1envfile.test|title=parse…path.test|title=Paths (Node Implementation) path|occurrence=1 · introduced test · mocha:v1|namespace=vscode@05c208e9e28d8c1c723fa08f85e2b7a96092e8e5|file=vs/base/test/common/path.test|title=Paths (Node Implementation) path|occurrence=1path.test|title=Paths (N…uri.test|title=URI File paths containing apostrophes break URI parsing and cannot be opened #276075|occurrence=1 · introduced test · mocha:v1|namespace=vscode@05c208e9e28d8c1c723fa08f85e2b7a96092e8e5|file=vs/base/test/common/uri.test|title=URI File paths containing apostrophes break URI parsing and cannot be opened #276075|occurrence=1uri.test|title=URI File …uri.test|title=URI URI#file, win-speciale|occurrence=1 · introduced test · mocha:v1|namespace=vscode@05c208e9e28d8c1c723fa08f85e2b7a96092e8e5|file=vs/base/test/common/uri.test|title=URI URI#file, win-speciale|occurrence=1uri.test|title=URI URI#f…Focused concept · envfile.ts ×3 · 82 introduced LOCenvfile.ts ×3

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.

1 test introduced at this concept.

Introduced code

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

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

src/vs/base/common/envfile.ts 82 introduced LOC · 3 ranges

Open complete file

13 */
14 export function parseEnvFile(src: string) {
15 > const result = new Map<string, string>(); envfile.ts
16 >
17 > // Normalize line breaks
18 > const normalizedSrc = src.replace(/\r\n?/g, '\n');
19 > const lines = normalizedSrc.split('\n');
20 >
21 > for (let line of lines) {
22 > // Skip empty lines and comments
23 > line = line.trim();
24 > if (!line || line.startsWith('#')) {
25 > continue;
26 > }
27 >
28 > // Parse the line into key and value
29 > const [key, value] = parseLine(line);
30 > if (key) {
31 > result.set(key, value);
32 > }
33 > }
34 >
35 > return result;
36 >
37 > function parseLine(line: string): [string, string] | [null, null] {
38 > // Handle export prefix
39 > if (line.startsWith('export ')) {
40 line = line.substring(7).trim();
41 }
42 > envfile.ts
43 > // Find the key-value separator
44 > const separatorIndex = findIndexOutsideQuotes(line, c => c === '=' || c === ':');
45 > if (separatorIndex === -1) {
46 return [null, null];
47 }
48 > envfile.ts
49 > const key = line.substring(0, separatorIndex).trim();
50 > let value = line.substring(separatorIndex + 1).trim();
51 >
52 > // Handle comments and remove them
53 > const commentIndex = findIndexOutsideQuotes(value, c => c === '#');
54 > if (commentIndex !== -1) {
55 > value = value.substring(0, commentIndex).trim();
56 > }
57 >
58 > // Process quoted values
59 > if (value.length >= 2) {
60 > const firstChar = value[0];
61 > const lastChar = value[value.length - 1];
62 >
63 > if ((firstChar === '"' && lastChar === '"') ||
64 > (firstChar === '\'' && lastChar === '\'') ||
65 > (firstChar === '`' && lastChar === '`')) {
66 > // Remove surrounding quotes
67 > value = value.substring(1, value.length - 1);
68 >
69 > // Handle escaped characters in double quotes
70 > if (firstChar === '"') {
71 > value = value.replace(/\\n/g, '\n').replace(/\\r/g, '\r');
72 > }
73 > }
74 > }
75 >
76 > return [key, value];
77 > }
78 >
79 > function findIndexOutsideQuotes(text: string, predicate: (char: string) => boolean): number {
80 > let inQuote = false;
81 > let quoteChar = '';
82 >
83 > for (let i = 0; i < text.length; i++) {
84 > const char = text[i];
85 >
86 > if (inQuote) {
87 > if (char === quoteChar && text[i - 1] !== '\\') {
88 > inQuote = false;
89 > }
90 > } else if (char === '"' || char === '\'' || char === '`') {
91 > inQuote = true;
92 > quoteChar = char;
93 > } else if (predicate(char)) {
94 > return i;
95 > }
96 > }
97 >
98 > return -1;
99 > }
100 > }