mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 18:32:56 +01:00
deploy: e0f314294d
This commit is contained in:
parent
3f366fe0a6
commit
8c7e0dd5bb
364 changed files with 364 additions and 364 deletions
2
8819.js
2
8819.js
|
|
@ -1,2 +1,2 @@
|
||||||
"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[8819],{8819:(t,e,n)=>{n.r(e),n.d(e,{default:()=>o});const o='customElements.define(\n\t"code-view-monaco",\n\tclass CodeViewMonaco extends HTMLElement {\n\t\t_monacoEditor;\n\t\t/** @type HTMLElement */\n\t\t_editor;\n\n\t\tconstructor() {\n\t\t\tsuper();\n\n\t\t\tconst shadowRoot = this.attachShadow({ mode: "open" });\n\n\t\t\t// Copy over editor styles\n\t\t\tconst style = document.querySelector(\n\t\t\t\t"link[rel=\'stylesheet\'][data-name=\'vs/editor/editor.main\']"\n\t\t\t);\n\t\t\tshadowRoot.appendChild(style.cloneNode(true));\n\n\t\t\tconst template = /** @type HTMLTemplateElement */ (\n\t\t\t\tdocument.getElementById("editor-template")\n\t\t\t);\n\t\t\tshadowRoot.appendChild(template.content.cloneNode(true));\n\n\t\t\tthis._editor = shadowRoot.querySelector("#container");\n\t\t\tthis._monacoEditor = monaco.editor.create(this._editor, {\n\t\t\t\tautomaticLayout: true,\n\t\t\t\tlanguage: "html",\n\n\t\t\t\tvalue: `<div>Hello World</div>`,\n\t\t\t});\n\t\t}\n\t}\n);\n'}}]);
|
"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[8819],{8819:(t,e,n)=>{n.r(e),n.d(e,{default:()=>o});const o='customElements.define(\n\t"code-view-monaco",\n\tclass CodeViewMonaco extends HTMLElement {\n\t\t_monacoEditor;\n\t\t/** @type HTMLElement */\n\t\t_editor;\n\n\t\tconstructor() {\n\t\t\tsuper();\n\n\t\t\tconst shadowRoot = this.attachShadow({ mode: "open" });\n\n\t\t\t// Copy over editor styles\n\t\t\tconst styles = document.querySelectorAll(\n\t\t\t\t"link[rel=\'stylesheet\'][data-name^=\'vs/\']"\n\t\t\t);\n\t\t\tfor (const style of styles) {\n\t\t\t\tshadowRoot.appendChild(style.cloneNode(true));\n\t\t\t}\n\n\t\t\tconst template = /** @type HTMLTemplateElement */ (\n\t\t\t\tdocument.getElementById("editor-template")\n\t\t\t);\n\t\t\tshadowRoot.appendChild(template.content.cloneNode(true));\n\n\t\t\tthis._editor = shadowRoot.querySelector("#container");\n\t\t\tthis._monacoEditor = monaco.editor.create(this._editor, {\n\t\t\t\tautomaticLayout: true,\n\t\t\t\tlanguage: "html",\n\n\t\t\t\tvalue: `<div>Hello World</div>`,\n\t\t\t});\n\t\t}\n\t}\n);\n'}}]);
|
||||||
//# sourceMappingURL=8819.js.map
|
//# sourceMappingURL=8819.js.map
|
||||||
|
|
@ -1 +1 @@
|
||||||
{"version":3,"file":"8819.js","mappings":"8IAAA,w6B","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/creating-the-editor/web-component/sample.js"],"sourcesContent":["export default \"customElements.define(\\n\\t\\\"code-view-monaco\\\",\\n\\tclass CodeViewMonaco extends HTMLElement {\\n\\t\\t_monacoEditor;\\n\\t\\t/** @type HTMLElement */\\n\\t\\t_editor;\\n\\n\\t\\tconstructor() {\\n\\t\\t\\tsuper();\\n\\n\\t\\t\\tconst shadowRoot = this.attachShadow({ mode: \\\"open\\\" });\\n\\n\\t\\t\\t// Copy over editor styles\\n\\t\\t\\tconst style = document.querySelector(\\n\\t\\t\\t\\t\\\"link[rel='stylesheet'][data-name='vs/editor/editor.main']\\\"\\n\\t\\t\\t);\\n\\t\\t\\tshadowRoot.appendChild(style.cloneNode(true));\\n\\n\\t\\t\\tconst template = /** @type HTMLTemplateElement */ (\\n\\t\\t\\t\\tdocument.getElementById(\\\"editor-template\\\")\\n\\t\\t\\t);\\n\\t\\t\\tshadowRoot.appendChild(template.content.cloneNode(true));\\n\\n\\t\\t\\tthis._editor = shadowRoot.querySelector(\\\"#container\\\");\\n\\t\\t\\tthis._monacoEditor = monaco.editor.create(this._editor, {\\n\\t\\t\\t\\tautomaticLayout: true,\\n\\t\\t\\t\\tlanguage: \\\"html\\\",\\n\\n\\t\\t\\t\\tvalue: `<div>Hello World</div>`,\\n\\t\\t\\t});\\n\\t\\t}\\n\\t}\\n);\\n\";"],"names":[],"sourceRoot":""}
|
{"version":3,"file":"8819.js","mappings":"8IAAA,28B","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/creating-the-editor/web-component/sample.js"],"sourcesContent":["export default \"customElements.define(\\n\\t\\\"code-view-monaco\\\",\\n\\tclass CodeViewMonaco extends HTMLElement {\\n\\t\\t_monacoEditor;\\n\\t\\t/** @type HTMLElement */\\n\\t\\t_editor;\\n\\n\\t\\tconstructor() {\\n\\t\\t\\tsuper();\\n\\n\\t\\t\\tconst shadowRoot = this.attachShadow({ mode: \\\"open\\\" });\\n\\n\\t\\t\\t// Copy over editor styles\\n\\t\\t\\tconst styles = document.querySelectorAll(\\n\\t\\t\\t\\t\\\"link[rel='stylesheet'][data-name^='vs/']\\\"\\n\\t\\t\\t);\\n\\t\\t\\tfor (const style of styles) {\\n\\t\\t\\t\\tshadowRoot.appendChild(style.cloneNode(true));\\n\\t\\t\\t}\\n\\n\\t\\t\\tconst template = /** @type HTMLTemplateElement */ (\\n\\t\\t\\t\\tdocument.getElementById(\\\"editor-template\\\")\\n\\t\\t\\t);\\n\\t\\t\\tshadowRoot.appendChild(template.content.cloneNode(true));\\n\\n\\t\\t\\tthis._editor = shadowRoot.querySelector(\\\"#container\\\");\\n\\t\\t\\tthis._monacoEditor = monaco.editor.create(this._editor, {\\n\\t\\t\\t\\tautomaticLayout: true,\\n\\t\\t\\t\\tlanguage: \\\"html\\\",\\n\\n\\t\\t\\t\\tvalue: `<div>Hello World</div>`,\\n\\t\\t\\t});\\n\\t\\t}\\n\\t}\\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
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.37.0(14a92401d7aff24ad84578a4c8b9a701ff533a84)
|
* Version: 0.37.0(e0f314294da78b3a53e99e98bcbbc2ed29894ade)
|
||||||
* 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