mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 15:05:39 +01:00
deploy: 14a92401d7
This commit is contained in:
parent
035b25fc4a
commit
3f366fe0a6
1176 changed files with 255228 additions and 224410 deletions
2
6040.js
Normal file
2
6040.js
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[6040],{6040:(n,o,t)=>{t.r(o),t.d(o,{default:()=>e});const e="// A fragment shader which lights textured geometry with point lights.\n// Taken from the introduction of the WebGPU Shading Lnaguage Specification\n// https://w3.org/TR/WGSL\n\n// Lights from a storage buffer binding.\nstruct PointLight {\n position : vec3f,\n color : vec3f,\n}\n\nstruct LightStorage {\n pointCount : u32,\n point : array<PointLight>,\n}\n@group(0) @binding(0) var<storage> lights : LightStorage;\n\n// Texture and sampler.\n@group(1) @binding(0) var baseColorSampler : sampler;\n@group(1) @binding(1) var baseColorTexture : texture_2d<f32>;\n\n// Function arguments are values from from vertex shader.\n@fragment\nfn fragmentMain(@location(0) worldPos : vec3f,\n @location(1) normal : vec3f,\n @location(2) uv : vec2f) -> @location(0) vec4f {\n // Sample the base color of the surface from a texture.\n let baseColor = textureSample(baseColorTexture, baseColorSampler, uv);\n\n let N = normalize(normal);\n var surfaceColor = vec3f(0);\n\n // Loop over the scene point lights.\n for (var i = 0u; i < lights.pointCount; i++) {\n let worldToLight = lights.point[i].position - worldPos;\n let dist = length(worldToLight);\n let dir = normalize(worldToLight);\n\n // Determine the contribution of this light to the surface color.\n let radiance = lights.point[i].color * (1 / pow(dist, 2));\n let nDotL = max(dot(N, dir), 0);\n\n // Accumulate light contribution to the surface color.\n surfaceColor += baseColor.rgb * radiance * nDotL;\n }\n\n // Return the accumulated surface color.\n return vec4(surfaceColor, baseColor.a);\n}\n"}}]);
|
||||||
|
//# sourceMappingURL=6040.js.map
|
||||||
1
6040.js.map
Normal file
1
6040.js.map
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
{"version":3,"file":"6040.js","mappings":"8IAAA,ylD","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/home-samples/sample.wgsl.txt"],"sourcesContent":["export default \"// A fragment shader which lights textured geometry with point lights.\\n// Taken from the introduction of the WebGPU Shading Lnaguage Specification\\n// https://w3.org/TR/WGSL\\n\\n// Lights from a storage buffer binding.\\nstruct PointLight {\\n position : vec3f,\\n color : vec3f,\\n}\\n\\nstruct LightStorage {\\n pointCount : u32,\\n point : array<PointLight>,\\n}\\n@group(0) @binding(0) var<storage> lights : LightStorage;\\n\\n// Texture and sampler.\\n@group(1) @binding(0) var baseColorSampler : sampler;\\n@group(1) @binding(1) var baseColorTexture : texture_2d<f32>;\\n\\n// Function arguments are values from from vertex shader.\\n@fragment\\nfn fragmentMain(@location(0) worldPos : vec3f,\\n @location(1) normal : vec3f,\\n @location(2) uv : vec2f) -> @location(0) vec4f {\\n // Sample the base color of the surface from a texture.\\n let baseColor = textureSample(baseColorTexture, baseColorSampler, uv);\\n\\n let N = normalize(normal);\\n var surfaceColor = vec3f(0);\\n\\n // Loop over the scene point lights.\\n for (var i = 0u; i < lights.pointCount; i++) {\\n let worldToLight = lights.point[i].position - worldPos;\\n let dist = length(worldToLight);\\n let dir = normalize(worldToLight);\\n\\n // Determine the contribution of this light to the surface color.\\n let radiance = lights.point[i].color * (1 / pow(dist, 2));\\n let nDotL = max(dot(N, dir), 0);\\n\\n // Accumulate light contribution to the surface color.\\n surfaceColor += baseColor.rgb * radiance * nDotL;\\n }\\n\\n // Return the accumulated surface color.\\n return vec4(surfaceColor, baseColor.a);\\n}\\n\";"],"names":[],"sourceRoot":""}
|
||||||
2
index.js
2
index.js
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
19
node_modules/monaco-editor/CHANGELOG.md
generated
vendored
19
node_modules/monaco-editor/CHANGELOG.md
generated
vendored
|
|
@ -1,5 +1,24 @@
|
||||||
# Monaco Editor Changelog
|
# Monaco Editor Changelog
|
||||||
|
|
||||||
|
## [0.37.0]
|
||||||
|
|
||||||
|
- New `registerLinkOpener` API
|
||||||
|
- New `onLanguageEncountered` event for when a language is encountered during tokenization.
|
||||||
|
- Updated TypeScript to 5.0
|
||||||
|
- New required field `canFormatMultipleRanges` on `DocumentRangeFormattingEditProvider`
|
||||||
|
- Bugfixes
|
||||||
|
|
||||||
|
Contributions to `monaco-editor`:
|
||||||
|
|
||||||
|
- [@danboo (Dan Boorstein)](https://github.com/danboo): add perl module (.pm) extension [PR #3258](https://github.com/microsoft/monaco-editor/pull/3258)
|
||||||
|
- [@miloush (Jan Kučera)](https://github.com/miloush): Include .xsd and .xslt as an XML extension [PR #3866](https://github.com/microsoft/monaco-editor/pull/3866)
|
||||||
|
- [@nnnnoel (Noel Kim (김민혁))](https://github.com/nnnnoel): Add CommonJS, ESM extension for TS [PR #3264](https://github.com/microsoft/monaco-editor/pull/3264)
|
||||||
|
- [@PmcFizz (Fizz)](https://github.com/PmcFizz): opt example [PR #3726](https://github.com/microsoft/monaco-editor/pull/3726)
|
||||||
|
- [@tamayika](https://github.com/tamayika)
|
||||||
|
- Fix playground samples type errors and add CI test [PR #3722](https://github.com/microsoft/monaco-editor/pull/3722)
|
||||||
|
- Add custom keybinding example [PR #3848](https://github.com/microsoft/monaco-editor/pull/3848)
|
||||||
|
- [@yuri1969 (yuri)](https://github.com/yuri1969): Various YAML improvements [PR #3864](https://github.com/microsoft/monaco-editor/pull/3864)
|
||||||
|
|
||||||
## [0.36.1]
|
## [0.36.1]
|
||||||
|
|
||||||
- Marks unneeded dependencies as dev dependencies.
|
- Marks unneeded dependencies as dev dependencies.
|
||||||
|
|
|
||||||
3828
node_modules/monaco-editor/dev/bundleInfo.json
generated
vendored
3828
node_modules/monaco-editor/dev/bundleInfo.json
generated
vendored
File diff suppressed because it is too large
Load diff
2756
node_modules/monaco-editor/dev/nls.metadata.json
generated
vendored
2756
node_modules/monaco-editor/dev/nls.metadata.json
generated
vendored
File diff suppressed because it is too large
Load diff
BIN
node_modules/monaco-editor/dev/vs/base/browser/ui/codicons/codicon/codicon.ttf
generated
vendored
BIN
node_modules/monaco-editor/dev/vs/base/browser/ui/codicons/codicon/codicon.ttf
generated
vendored
Binary file not shown.
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.de.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.de.js
generated
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------
|
/*!-----------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(20c3f8ff1e9176c954b34c052b2a84358d41a030)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------*/
|
*-----------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.es.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.es.js
generated
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------
|
/*!-----------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(20c3f8ff1e9176c954b34c052b2a84358d41a030)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------*/
|
*-----------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.fr.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.fr.js
generated
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------
|
/*!-----------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(20c3f8ff1e9176c954b34c052b2a84358d41a030)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------*/
|
*-----------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.it.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.it.js
generated
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------
|
/*!-----------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(20c3f8ff1e9176c954b34c052b2a84358d41a030)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------*/
|
*-----------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.ja.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.ja.js
generated
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------
|
/*!-----------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(20c3f8ff1e9176c954b34c052b2a84358d41a030)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------*/
|
*-----------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.js
generated
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------
|
/*!-----------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(20c3f8ff1e9176c954b34c052b2a84358d41a030)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------*/
|
*-----------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.ko.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.ko.js
generated
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------
|
/*!-----------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(20c3f8ff1e9176c954b34c052b2a84358d41a030)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------*/
|
*-----------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.ru.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.ru.js
generated
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------
|
/*!-----------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(20c3f8ff1e9176c954b34c052b2a84358d41a030)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------*/
|
*-----------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.zh-cn.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.zh-cn.js
generated
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------
|
/*!-----------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(20c3f8ff1e9176c954b34c052b2a84358d41a030)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------*/
|
*-----------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.zh-tw.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/base/common/worker/simpleWorker.nls.zh-tw.js
generated
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------
|
/*!-----------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(20c3f8ff1e9176c954b34c052b2a84358d41a030)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------*/
|
*-----------------------------------------------------------*/
|
||||||
|
|
|
||||||
4495
node_modules/monaco-editor/dev/vs/base/worker/workerMain.js
generated
vendored
4495
node_modules/monaco-editor/dev/vs/base/worker/workerMain.js
generated
vendored
File diff suppressed because one or more lines are too long
2
node_modules/monaco-editor/dev/vs/base/worker/workerMain.js.map
generated
vendored
2
node_modules/monaco-editor/dev/vs/base/worker/workerMain.js.map
generated
vendored
File diff suppressed because one or more lines are too long
2
node_modules/monaco-editor/dev/vs/basic-languages/abap/abap.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/abap/abap.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/apex/apex.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/apex/apex.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/azcli/azcli.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/azcli/azcli.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/bat/bat.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/bat/bat.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/bicep/bicep.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/bicep/bicep.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/cameligo/cameligo.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/cameligo/cameligo.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/clojure/clojure.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/clojure/clojure.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/coffee/coffee.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/coffee/coffee.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/cpp/cpp.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/cpp/cpp.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/csharp/csharp.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/csharp/csharp.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/csp/csp.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/csp/csp.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/css/css.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/css/css.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/cypher/cypher.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/cypher/cypher.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/dart/dart.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/dart/dart.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/dockerfile/dockerfile.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/dockerfile/dockerfile.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/ecl/ecl.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/ecl/ecl.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/elixir/elixir.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/elixir/elixir.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/flow9/flow9.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/flow9/flow9.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/freemarker2/freemarker2.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/freemarker2/freemarker2.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/fsharp/fsharp.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/fsharp/fsharp.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/go/go.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/go/go.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/graphql/graphql.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/graphql/graphql.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/handlebars/handlebars.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/handlebars/handlebars.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/hcl/hcl.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/hcl/hcl.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/html/html.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/html/html.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/ini/ini.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/ini/ini.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/java/java.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/java/java.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/javascript/javascript.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/javascript/javascript.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/julia/julia.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/julia/julia.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/kotlin/kotlin.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/kotlin/kotlin.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/less/less.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/less/less.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/lexon/lexon.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/lexon/lexon.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/liquid/liquid.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/liquid/liquid.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/lua/lua.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/lua/lua.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/m3/m3.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/m3/m3.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/markdown/markdown.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/markdown/markdown.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/mips/mips.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/mips/mips.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/msdax/msdax.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/msdax/msdax.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/mysql/mysql.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/mysql/mysql.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/objective-c/objective-c.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/objective-c/objective-c.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/pascal/pascal.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/pascal/pascal.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/pascaligo/pascaligo.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/pascaligo/pascaligo.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/perl/perl.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/perl/perl.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/pgsql/pgsql.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/pgsql/pgsql.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/php/php.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/php/php.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/pla/pla.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/pla/pla.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/postiats/postiats.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/postiats/postiats.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/powerquery/powerquery.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/powerquery/powerquery.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/powershell/powershell.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/powershell/powershell.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/protobuf/protobuf.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/protobuf/protobuf.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/pug/pug.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/pug/pug.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/python/python.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/python/python.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/qsharp/qsharp.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/qsharp/qsharp.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/r/r.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/r/r.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/razor/razor.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/razor/razor.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/redis/redis.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/redis/redis.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/redshift/redshift.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/redshift/redshift.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/ruby/ruby.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/ruby/ruby.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/rust/rust.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/rust/rust.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/sb/sb.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/sb/sb.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/scala/scala.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/scala/scala.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/scheme/scheme.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/scheme/scheme.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/scss/scss.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/scss/scss.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/shell/shell.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/shell/shell.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/solidity/solidity.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/solidity/solidity.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/sophia/sophia.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/sophia/sophia.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/sparql/sparql.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/sparql/sparql.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/sql/sql.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/sql/sql.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/st/st.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/st/st.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/swift/swift.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/swift/swift.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/systemverilog/systemverilog.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/systemverilog/systemverilog.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/tcl/tcl.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/tcl/tcl.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/twig/twig.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/twig/twig.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/typescript/typescript.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/typescript/typescript.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/vb/vb.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/vb/vb.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
464
node_modules/monaco-editor/dev/vs/basic-languages/wgsl/wgsl.js
generated
vendored
Normal file
464
node_modules/monaco-editor/dev/vs/basic-languages/wgsl/wgsl.js
generated
vendored
Normal file
|
|
@ -0,0 +1,464 @@
|
||||||
|
"use strict";
|
||||||
|
/*!-----------------------------------------------------------------------------
|
||||||
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
|
* Released under the MIT license
|
||||||
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
|
*-----------------------------------------------------------------------------*/
|
||||||
|
define("vs/basic-languages/wgsl/wgsl", ["require"],(require)=>{
|
||||||
|
var moduleExports = (() => {
|
||||||
|
var __defProp = Object.defineProperty;
|
||||||
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
||||||
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
||||||
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
||||||
|
var __export = (target, all) => {
|
||||||
|
for (var name in all)
|
||||||
|
__defProp(target, name, { get: all[name], enumerable: true });
|
||||||
|
};
|
||||||
|
var __copyProps = (to, from, except, desc) => {
|
||||||
|
if (from && typeof from === "object" || typeof from === "function") {
|
||||||
|
for (let key of __getOwnPropNames(from))
|
||||||
|
if (!__hasOwnProp.call(to, key) && key !== except)
|
||||||
|
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
||||||
|
}
|
||||||
|
return to;
|
||||||
|
};
|
||||||
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
||||||
|
|
||||||
|
// src/basic-languages/wgsl/wgsl.ts
|
||||||
|
var wgsl_exports = {};
|
||||||
|
__export(wgsl_exports, {
|
||||||
|
conf: () => conf,
|
||||||
|
language: () => language
|
||||||
|
});
|
||||||
|
var conf = {
|
||||||
|
comments: {
|
||||||
|
lineComment: "//",
|
||||||
|
blockComment: ["/*", "*/"]
|
||||||
|
},
|
||||||
|
brackets: [
|
||||||
|
["{", "}"],
|
||||||
|
["[", "]"],
|
||||||
|
["(", ")"]
|
||||||
|
],
|
||||||
|
autoClosingPairs: [
|
||||||
|
{ open: "[", close: "]" },
|
||||||
|
{ open: "{", close: "}" },
|
||||||
|
{ open: "(", close: ")" }
|
||||||
|
],
|
||||||
|
surroundingPairs: [
|
||||||
|
{ open: "{", close: "}" },
|
||||||
|
{ open: "[", close: "]" },
|
||||||
|
{ open: "(", close: ")" }
|
||||||
|
]
|
||||||
|
};
|
||||||
|
function qw(str) {
|
||||||
|
let result = [];
|
||||||
|
const words = str.split(/\t+|\r+|\n+| +/);
|
||||||
|
for (let i = 0; i < words.length; ++i) {
|
||||||
|
if (words[i].length > 0) {
|
||||||
|
result.push(words[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
var atoms = qw("true false");
|
||||||
|
var keywords = qw(`
|
||||||
|
alias
|
||||||
|
break
|
||||||
|
case
|
||||||
|
const
|
||||||
|
const_assert
|
||||||
|
continue
|
||||||
|
continuing
|
||||||
|
default
|
||||||
|
diagnostic
|
||||||
|
discard
|
||||||
|
else
|
||||||
|
enable
|
||||||
|
fn
|
||||||
|
for
|
||||||
|
if
|
||||||
|
let
|
||||||
|
loop
|
||||||
|
override
|
||||||
|
requires
|
||||||
|
return
|
||||||
|
struct
|
||||||
|
switch
|
||||||
|
var
|
||||||
|
while
|
||||||
|
`);
|
||||||
|
var reserved = qw(`
|
||||||
|
NULL
|
||||||
|
Self
|
||||||
|
abstract
|
||||||
|
active
|
||||||
|
alignas
|
||||||
|
alignof
|
||||||
|
as
|
||||||
|
asm
|
||||||
|
asm_fragment
|
||||||
|
async
|
||||||
|
attribute
|
||||||
|
auto
|
||||||
|
await
|
||||||
|
become
|
||||||
|
binding_array
|
||||||
|
cast
|
||||||
|
catch
|
||||||
|
class
|
||||||
|
co_await
|
||||||
|
co_return
|
||||||
|
co_yield
|
||||||
|
coherent
|
||||||
|
column_major
|
||||||
|
common
|
||||||
|
compile
|
||||||
|
compile_fragment
|
||||||
|
concept
|
||||||
|
const_cast
|
||||||
|
consteval
|
||||||
|
constexpr
|
||||||
|
constinit
|
||||||
|
crate
|
||||||
|
debugger
|
||||||
|
decltype
|
||||||
|
delete
|
||||||
|
demote
|
||||||
|
demote_to_helper
|
||||||
|
do
|
||||||
|
dynamic_cast
|
||||||
|
enum
|
||||||
|
explicit
|
||||||
|
export
|
||||||
|
extends
|
||||||
|
extern
|
||||||
|
external
|
||||||
|
fallthrough
|
||||||
|
filter
|
||||||
|
final
|
||||||
|
finally
|
||||||
|
friend
|
||||||
|
from
|
||||||
|
fxgroup
|
||||||
|
get
|
||||||
|
goto
|
||||||
|
groupshared
|
||||||
|
highp
|
||||||
|
impl
|
||||||
|
implements
|
||||||
|
import
|
||||||
|
inline
|
||||||
|
instanceof
|
||||||
|
interface
|
||||||
|
layout
|
||||||
|
lowp
|
||||||
|
macro
|
||||||
|
macro_rules
|
||||||
|
match
|
||||||
|
mediump
|
||||||
|
meta
|
||||||
|
mod
|
||||||
|
module
|
||||||
|
move
|
||||||
|
mut
|
||||||
|
mutable
|
||||||
|
namespace
|
||||||
|
new
|
||||||
|
nil
|
||||||
|
noexcept
|
||||||
|
noinline
|
||||||
|
nointerpolation
|
||||||
|
noperspective
|
||||||
|
null
|
||||||
|
nullptr
|
||||||
|
of
|
||||||
|
operator
|
||||||
|
package
|
||||||
|
packoffset
|
||||||
|
partition
|
||||||
|
pass
|
||||||
|
patch
|
||||||
|
pixelfragment
|
||||||
|
precise
|
||||||
|
precision
|
||||||
|
premerge
|
||||||
|
priv
|
||||||
|
protected
|
||||||
|
pub
|
||||||
|
public
|
||||||
|
readonly
|
||||||
|
ref
|
||||||
|
regardless
|
||||||
|
register
|
||||||
|
reinterpret_cast
|
||||||
|
require
|
||||||
|
resource
|
||||||
|
restrict
|
||||||
|
self
|
||||||
|
set
|
||||||
|
shared
|
||||||
|
sizeof
|
||||||
|
smooth
|
||||||
|
snorm
|
||||||
|
static
|
||||||
|
static_assert
|
||||||
|
static_cast
|
||||||
|
std
|
||||||
|
subroutine
|
||||||
|
super
|
||||||
|
target
|
||||||
|
template
|
||||||
|
this
|
||||||
|
thread_local
|
||||||
|
throw
|
||||||
|
trait
|
||||||
|
try
|
||||||
|
type
|
||||||
|
typedef
|
||||||
|
typeid
|
||||||
|
typename
|
||||||
|
typeof
|
||||||
|
union
|
||||||
|
unless
|
||||||
|
unorm
|
||||||
|
unsafe
|
||||||
|
unsized
|
||||||
|
use
|
||||||
|
using
|
||||||
|
varying
|
||||||
|
virtual
|
||||||
|
volatile
|
||||||
|
wgsl
|
||||||
|
where
|
||||||
|
with
|
||||||
|
writeonly
|
||||||
|
yield
|
||||||
|
`);
|
||||||
|
var predeclared_enums = qw(`
|
||||||
|
read write read_write
|
||||||
|
function private workgroup uniform storage
|
||||||
|
perspective linear flat
|
||||||
|
center centroid sample
|
||||||
|
vertex_index instance_index position front_facing frag_depth
|
||||||
|
local_invocation_id local_invocation_index
|
||||||
|
global_invocation_id workgroup_id num_workgroups
|
||||||
|
sample_index sample_mask
|
||||||
|
rgba8unorm
|
||||||
|
rgba8snorm
|
||||||
|
rgba8uint
|
||||||
|
rgba8sint
|
||||||
|
rgba16uint
|
||||||
|
rgba16sint
|
||||||
|
rgba16float
|
||||||
|
r32uint
|
||||||
|
r32sint
|
||||||
|
r32float
|
||||||
|
rg32uint
|
||||||
|
rg32sint
|
||||||
|
rg32float
|
||||||
|
rgba32uint
|
||||||
|
rgba32sint
|
||||||
|
rgba32float
|
||||||
|
bgra8unorm
|
||||||
|
`);
|
||||||
|
var predeclared_types = qw(`
|
||||||
|
bool
|
||||||
|
f16
|
||||||
|
f32
|
||||||
|
i32
|
||||||
|
sampler sampler_comparison
|
||||||
|
texture_depth_2d
|
||||||
|
texture_depth_2d_array
|
||||||
|
texture_depth_cube
|
||||||
|
texture_depth_cube_array
|
||||||
|
texture_depth_multisampled_2d
|
||||||
|
texture_external
|
||||||
|
texture_external
|
||||||
|
u32
|
||||||
|
`);
|
||||||
|
var predeclared_type_generators = qw(`
|
||||||
|
array
|
||||||
|
atomic
|
||||||
|
mat2x2
|
||||||
|
mat2x3
|
||||||
|
mat2x4
|
||||||
|
mat3x2
|
||||||
|
mat3x3
|
||||||
|
mat3x4
|
||||||
|
mat4x2
|
||||||
|
mat4x3
|
||||||
|
mat4x4
|
||||||
|
ptr
|
||||||
|
texture_1d
|
||||||
|
texture_2d
|
||||||
|
texture_2d_array
|
||||||
|
texture_3d
|
||||||
|
texture_cube
|
||||||
|
texture_cube_array
|
||||||
|
texture_multisampled_2d
|
||||||
|
texture_storage_1d
|
||||||
|
texture_storage_2d
|
||||||
|
texture_storage_2d_array
|
||||||
|
texture_storage_3d
|
||||||
|
vec2
|
||||||
|
vec3
|
||||||
|
vec4
|
||||||
|
`);
|
||||||
|
var predeclared_type_aliases = qw(`
|
||||||
|
vec2i vec3i vec4i
|
||||||
|
vec2u vec3u vec4u
|
||||||
|
vec2f vec3f vec4f
|
||||||
|
vec2h vec3h vec4h
|
||||||
|
mat2x2f mat2x3f mat2x4f
|
||||||
|
mat3x2f mat3x3f mat3x4f
|
||||||
|
mat4x2f mat4x3f mat4x4f
|
||||||
|
mat2x2h mat2x3h mat2x4h
|
||||||
|
mat3x2h mat3x3h mat3x4h
|
||||||
|
mat4x2h mat4x3h mat4x4h
|
||||||
|
`);
|
||||||
|
var predeclared_intrinsics = qw(`
|
||||||
|
bitcast all any select arrayLength abs acos acosh asin asinh atan atanh atan2
|
||||||
|
ceil clamp cos cosh countLeadingZeros countOneBits countTrailingZeros cross
|
||||||
|
degrees determinant distance dot exp exp2 extractBits faceForward firstLeadingBit
|
||||||
|
firstTrailingBit floor fma fract frexp inverseBits inverseSqrt ldexp length
|
||||||
|
log log2 max min mix modf normalize pow quantizeToF16 radians reflect refract
|
||||||
|
reverseBits round saturate sign sin sinh smoothstep sqrt step tan tanh transpose
|
||||||
|
trunc dpdx dpdxCoarse dpdxFine dpdy dpdyCoarse dpdyFine fwidth fwidthCoarse fwidthFine
|
||||||
|
textureDimensions textureGather textureGatherCompare textureLoad textureNumLayers
|
||||||
|
textureNumLevels textureNumSamples textureSample textureSampleBias textureSampleCompare
|
||||||
|
textureSampleCompareLevel textureSampleGrad textureSampleLevel textureSampleBaseClampToEdge
|
||||||
|
textureStore atomicLoad atomicStore atomicAdd atomicSub atomicMax atomicMin
|
||||||
|
atomicAnd atomicOr atomicXor atomicExchange atomicCompareExchangeWeak pack4x8snorm
|
||||||
|
pack4x8unorm pack2x16snorm pack2x16unorm pack2x16float unpack4x8snorm unpack4x8unorm
|
||||||
|
unpack2x16snorm unpack2x16unorm unpack2x16float storageBarrier workgroupBarrier
|
||||||
|
workgroupUniformLoad
|
||||||
|
`);
|
||||||
|
var operators = qw(`
|
||||||
|
&
|
||||||
|
&&
|
||||||
|
->
|
||||||
|
/
|
||||||
|
=
|
||||||
|
==
|
||||||
|
!=
|
||||||
|
>
|
||||||
|
>=
|
||||||
|
<
|
||||||
|
<=
|
||||||
|
%
|
||||||
|
-
|
||||||
|
--
|
||||||
|
+
|
||||||
|
++
|
||||||
|
|
|
||||||
|
||
|
||||||
|
*
|
||||||
|
<<
|
||||||
|
>>
|
||||||
|
+=
|
||||||
|
-=
|
||||||
|
*=
|
||||||
|
/=
|
||||||
|
%=
|
||||||
|
&=
|
||||||
|
|=
|
||||||
|
^=
|
||||||
|
>>=
|
||||||
|
<<=
|
||||||
|
`);
|
||||||
|
var directive_re = /enable|requires|diagnostic/;
|
||||||
|
var ident_re = /[_\p{XID_Start}]\p{XID_Continue}*/u;
|
||||||
|
var predefined_token = "variable.predefined";
|
||||||
|
var language = {
|
||||||
|
tokenPostfix: ".wgsl",
|
||||||
|
defaultToken: "invalid",
|
||||||
|
unicode: true,
|
||||||
|
atoms,
|
||||||
|
keywords,
|
||||||
|
reserved,
|
||||||
|
predeclared_enums,
|
||||||
|
predeclared_types,
|
||||||
|
predeclared_type_generators,
|
||||||
|
predeclared_type_aliases,
|
||||||
|
predeclared_intrinsics,
|
||||||
|
operators,
|
||||||
|
symbols: /[!%&*+\-\.\/:;<=>^|_~]+/,
|
||||||
|
tokenizer: {
|
||||||
|
root: [
|
||||||
|
[directive_re, "keyword", "@directive"],
|
||||||
|
[
|
||||||
|
ident_re,
|
||||||
|
{
|
||||||
|
cases: {
|
||||||
|
"@atoms": predefined_token,
|
||||||
|
"@keywords": "keyword",
|
||||||
|
"@reserved": "invalid",
|
||||||
|
"@predeclared_enums": predefined_token,
|
||||||
|
"@predeclared_types": predefined_token,
|
||||||
|
"@predeclared_type_generators": predefined_token,
|
||||||
|
"@predeclared_type_aliases": predefined_token,
|
||||||
|
"@predeclared_intrinsics": predefined_token,
|
||||||
|
"@default": "identifier"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
{ include: "@commentOrSpace" },
|
||||||
|
{ include: "@numbers" },
|
||||||
|
[/;:\./, "delimiter"],
|
||||||
|
[/,/, "delimiter"],
|
||||||
|
[/[{}()\[\]]/, "@brackets"],
|
||||||
|
["@", "annotation", "@attribute"],
|
||||||
|
[
|
||||||
|
/@symbols/,
|
||||||
|
{
|
||||||
|
cases: {
|
||||||
|
"@operators": "operator",
|
||||||
|
"@default": "delimiter"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[/./, "invalid"]
|
||||||
|
],
|
||||||
|
commentOrSpace: [
|
||||||
|
[/\s+/, "white"],
|
||||||
|
[/\/\*/, "comment", "@blockComment"],
|
||||||
|
[/\/\/.*$/, "comment"]
|
||||||
|
],
|
||||||
|
blockComment: [
|
||||||
|
[/[^\/*]+/, "comment"],
|
||||||
|
[/\/\*/, "comment", "@push"],
|
||||||
|
[/\*\//, "comment", "@pop"],
|
||||||
|
[/[\/*]/, "comment"]
|
||||||
|
],
|
||||||
|
attribute: [
|
||||||
|
{ include: "@commentOrSpace" },
|
||||||
|
[/\w+/, "annotation", "@pop"]
|
||||||
|
],
|
||||||
|
directive: [
|
||||||
|
{ include: "@commentOrSpace" },
|
||||||
|
[/[()]/, "@brackets"],
|
||||||
|
[/,/, "delimiter"],
|
||||||
|
[ident_re, "meta.content"],
|
||||||
|
[/;/, "delimiter", "@pop"]
|
||||||
|
],
|
||||||
|
numbers: [
|
||||||
|
[/0[fh]/, "number.float"],
|
||||||
|
[/[1-9][0-9]*[fh]/, "number.float"],
|
||||||
|
[/[0-9]*\.[0-9]+([eE][+-]?[0-9]+)?[fh]?/, "number.float"],
|
||||||
|
[/[0-9]+\.[0-9]*([eE][+-]?[0-9]+)?[fh]?/, "number.float"],
|
||||||
|
[/[0-9]+[eE][+-]?[0-9]+[fh]?/, "number.float"],
|
||||||
|
[/0[xX][0-9a-fA-F]*\.[0-9a-fA-F]+(?:[pP][+-]?[0-9]+[fh]?)?/, "number.hex"],
|
||||||
|
[/0[xX][0-9a-fA-F]+\.[0-9a-fA-F]*(?:[pP][+-]?[0-9]+[fh]?)?/, "number.hex"],
|
||||||
|
[/0[xX][0-9a-fA-F]+[pP][+-]?[0-9]+[fh]?/, "number.hex"],
|
||||||
|
[/0[xX][0-9a-fA-F]+[iu]?/, "number.hex"],
|
||||||
|
[/[1-9][0-9]*[iu]?/, "number"],
|
||||||
|
[/0[iu]?/, "number"]
|
||||||
|
]
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return __toCommonJS(wgsl_exports);
|
||||||
|
})();
|
||||||
|
return moduleExports;
|
||||||
|
});
|
||||||
2
node_modules/monaco-editor/dev/vs/basic-languages/xml/xml.js
generated
vendored
2
node_modules/monaco-editor/dev/vs/basic-languages/xml/xml.js
generated
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(6c56744c3419458f0dd48864520b759d1a3a1ca8)
|
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue