This commit is contained in:
hediet 2023-04-07 18:16:15 +00:00
parent 40a856c5b3
commit 96a2c518eb
364 changed files with 364 additions and 364 deletions

2
152.js
View file

@ -1,2 +1,2 @@
"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[152],{152:(t,e,n)=>{n.r(e),n.d(e,{default:()=>a});const a='const text = `function hello() {\n\talert(\'Hello world!\');\n}`;\n\n// Hover on each property to see its docs!\nmonaco.editor.create(document.getElementById("container"), {\n\tvalue: text,\n\tlanguage: "javascript",\n\tautomaticLayout: true,\n});\n'}}]); "use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[152],{152:(t,e,n)=>{n.r(e),n.d(e,{default:()=>o});const o='const value = /* set from `myEditor.getModel()`: */ `function hello() {\n\talert(\'Hello world!\');\n}`;\n\n// Hover on each property to see its docs!\nconst myEditor = monaco.editor.create(document.getElementById("container"), {\n\tvalue,\n\tlanguage: "javascript",\n\tautomaticLayout: true,\n});\n'}}]);
//# sourceMappingURL=152.js.map //# sourceMappingURL=152.js.map

View file

@ -1 +1 @@
{"version":3,"file":"152.js","mappings":"4IAAA,mQ","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/creating-the-editor/hello-world/sample.js"],"sourcesContent":["export default \"const text = `function hello() {\\n\\talert('Hello world!');\\n}`;\\n\\n// Hover on each property to see its docs!\\nmonaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue: text,\\n\\tlanguage: \\\"javascript\\\",\\n\\tautomaticLayout: true,\\n});\\n\";"],"names":[],"sourceRoot":""} {"version":3,"file":"152.js","mappings":"4IAAA,qT","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/creating-the-editor/hello-world/sample.js"],"sourcesContent":["export default \"const value = /* set from `myEditor.getModel()`: */ `function hello() {\\n\\talert('Hello world!');\\n}`;\\n\\n// Hover on each property to see its docs!\\nconst myEditor = monaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue,\\n\\tlanguage: \\\"javascript\\\",\\n\\tautomaticLayout: true,\\n});\\n\";"],"names":[],"sourceRoot":""}

2
297.js
View file

@ -1,2 +1,2 @@
"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[297],{297:(e,o,i)=>{i.r(o),i.d(o,{default:()=>n});const n='var originalModel = monaco.editor.createModel("heLLo world!", "text/plain");\nvar modifiedModel = monaco.editor.createModel("hello orlando!", "text/plain");\n\nvar diffEditor = monaco.editor.createDiffEditor(\n\tdocument.getElementById("container")\n);\ndiffEditor.setModel({\n\toriginal: originalModel,\n\tmodified: modifiedModel,\n});\n'}}]); "use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[297],{297:(t,o,e)=>{e.r(o),e.d(o,{default:()=>n});const n='const originalModel = monaco.editor.createModel(\n\t/* set from `originalModel`: */ `hello world`,\n\t"text/plain"\n);\nconst modifiedModel = monaco.editor.createModel(\n\t/* set from `modifiedModel`: */ `Hello World!`,\n\t"text/plain"\n);\n\nconst diffEditor = monaco.editor.createDiffEditor(\n\tdocument.getElementById("container"),\n\t{\n\t\toriginalEditable: true,\n\t\tautomaticLayout: true,\n\t}\n);\ndiffEditor.setModel({\n\toriginal: originalModel,\n\tmodified: modifiedModel,\n});\n'}}]);
//# sourceMappingURL=297.js.map //# sourceMappingURL=297.js.map

View file

@ -1 +1 @@
{"version":3,"file":"297.js","mappings":"4IAAA,4V","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/creating-the-diffeditor/hello-diff-world/sample.js"],"sourcesContent":["export default \"var originalModel = monaco.editor.createModel(\\\"heLLo world!\\\", \\\"text/plain\\\");\\nvar modifiedModel = monaco.editor.createModel(\\\"hello orlando!\\\", \\\"text/plain\\\");\\n\\nvar diffEditor = monaco.editor.createDiffEditor(\\n\\tdocument.getElementById(\\\"container\\\")\\n);\\ndiffEditor.setModel({\\n\\toriginal: originalModel,\\n\\tmodified: modifiedModel,\\n});\\n\";"],"names":[],"sourceRoot":""} {"version":3,"file":"297.js","mappings":"4IAAA,qf","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/creating-the-diffeditor/hello-diff-world/sample.js"],"sourcesContent":["export default \"const originalModel = monaco.editor.createModel(\\n\\t/* set from `originalModel`: */ `hello world`,\\n\\t\\\"text/plain\\\"\\n);\\nconst modifiedModel = monaco.editor.createModel(\\n\\t/* set from `modifiedModel`: */ `Hello World!`,\\n\\t\\\"text/plain\\\"\\n);\\n\\nconst diffEditor = monaco.editor.createDiffEditor(\\n\\tdocument.getElementById(\\\"container\\\"),\\n\\t{\\n\\t\\toriginalEditable: true,\\n\\t\\tautomaticLayout: true,\\n\\t}\\n);\\ndiffEditor.setModel({\\n\\toriginal: originalModel,\\n\\tmodified: modifiedModel,\\n});\\n\";"],"names":[],"sourceRoot":""}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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
*-----------------------------------------------------------------------------*/ *-----------------------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
/*!----------------------------------------------------------------------------- /*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved. * Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.37.1(20a8d5a651d057aaed7875ad1c1f2ecf13c4e773) * Version: 0.37.1(8983c5903319376745c467650bed65befeed9faf)
* 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