Skip to content

Commit 4e09dc6

Browse files
committed
New version
1 parent 80a64db commit 4e09dc6

File tree

20 files changed

+2112
-2094
lines changed

20 files changed

+2112
-2094
lines changed

standalone-packages/monaco-editor-core/dev/bundleInfo.json

Lines changed: 264 additions & 264 deletions
Large diffs are not rendered by default.

standalone-packages/monaco-editor-core/dev/vs/base/worker/workerMain.js

Lines changed: 6 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

standalone-packages/monaco-editor-core/dev/vs/base/worker/workerMain.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

standalone-packages/monaco-editor-core/dev/vs/editor/editor.main.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7810,9 +7810,12 @@ define(__m[27/*vs/base/common/uri*/], __M([1/*require*/,0/*exports*/,11/*vs/base
78107810
// unc path: file://shares/c$/far/boo
78117811
value = "//" + uri.authority + uri.path;
78127812
}
7813-
else if (uri.path.charCodeAt(0) === 47 /* Slash */
7814-
&& (uri.path.charCodeAt(1) >= 65 /* A */ && uri.path.charCodeAt(1) <= 90 /* Z */ || uri.path.charCodeAt(1) >= 97 /* a */ && uri.path.charCodeAt(1) <= 122 /* z */)
7815-
&& uri.path.charCodeAt(2) === 58 /* Colon */) {
7813+
else if (
7814+
// CODESANDBOX CHANGE, Windows also has forward slash
7815+
// uri.path.charCodeAt(0) === CharCode.Slash
7816+
// && (uri.path.charCodeAt(1) >= CharCode.A && uri.path.charCodeAt(1) <= CharCode.Z || uri.path.charCodeAt(1) >= CharCode.a && uri.path.charCodeAt(1) <= CharCode.z)
7817+
// && uri.path.charCodeAt(2) === CharCode.Colon
7818+
false) {
78167819
// windows drive letter: file:///c:/far/boo
78177820
value = uri.path[1].toLowerCase() + uri.path.substr(2);
78187821
}

standalone-packages/monaco-editor-core/dev/vs/editor/editor.main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

standalone-packages/monaco-editor-core/esm/vs/base/common/uri.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -479,9 +479,12 @@ function _makeFsPath(uri) {
479479
// unc path: file://shares/c$/far/boo
480480
value = "//" + uri.authority + uri.path;
481481
}
482-
else if (uri.path.charCodeAt(0) === 47 /* Slash */
483-
&& (uri.path.charCodeAt(1) >= 65 /* A */ && uri.path.charCodeAt(1) <= 90 /* Z */ || uri.path.charCodeAt(1) >= 97 /* a */ && uri.path.charCodeAt(1) <= 122 /* z */)
484-
&& uri.path.charCodeAt(2) === 58 /* Colon */) {
482+
else if (
483+
// CODESANDBOX CHANGE, Windows also has forward slash
484+
// uri.path.charCodeAt(0) === CharCode.Slash
485+
// && (uri.path.charCodeAt(1) >= CharCode.A && uri.path.charCodeAt(1) <= CharCode.Z || uri.path.charCodeAt(1) >= CharCode.a && uri.path.charCodeAt(1) <= CharCode.z)
486+
// && uri.path.charCodeAt(2) === CharCode.Colon
487+
false) {
485488
// windows drive letter: file:///c:/far/boo
486489
value = uri.path[1].toLowerCase() + uri.path.substr(2);
487490
}

standalone-packages/monaco-editor-core/min-maps/vs/base/worker/workerMain.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

standalone-packages/monaco-editor-core/min-maps/vs/editor/editor.main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

standalone-packages/monaco-editor-core/min/vs/base/worker/workerMain.js

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

standalone-packages/monaco-editor-core/min/vs/editor/editor.main.js

Lines changed: 745 additions & 745 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)