mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 19:42:56 +01:00
deploy: 80ee9b3995
This commit is contained in:
parent
3b605ebe16
commit
6d177651e7
366 changed files with 366 additions and 366 deletions
2
2694.js
2
2694.js
|
|
@ -1,2 +1,2 @@
|
|||
"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[2694],{2694:(t,n,e)=>{e.r(n),e.d(n,{default:()=>o});const o='var jsCode = [\n\t\'"use strict";\',\n\t"function Person(age) {",\n\t"\tif (age) {",\n\t"\t\tthis.age = age;",\n\t"\t}",\n\t"}",\n\t"Person.prototype.getAge = function () {",\n\t"\treturn this.age;",\n\t"};",\n].join("\\n");\n\nvar editor = monaco.editor.create(document.getElementById("container"), {\n\tvalue: jsCode,\n\tlanguage: "javascript",\n\tglyphMargin: true,\n\tcontextmenu: false,\n});\n\nvar decorations = editor.deltaDecorations(\n\t[],\n\t[\n\t\t{\n\t\t\trange: new monaco.Range(3, 1, 3, 1),\n\t\t\toptions: {\n\t\t\t\tisWholeLine: true,\n\t\t\t\tclassName: "myContentClass",\n\t\t\t\tglyphMarginClassName: "myGlyphMarginClass",\n\t\t\t},\n\t\t},\n\t]\n);\n\n// Add a zone to make hit testing more interesting\nvar viewZoneId = null;\neditor.changeViewZones(function (changeAccessor) {\n\tvar domNode = document.createElement("div");\n\tdomNode.style.background = "lightgreen";\n\tviewZoneId = changeAccessor.addZone({\n\t\tafterLineNumber: 3,\n\t\theightInLines: 3,\n\t\tdomNode: domNode,\n\t});\n});\n\n// Add a content widget (scrolls inline with text)\nvar contentWidget = {\n\tdomNode: null,\n\tgetId: function () {\n\t\treturn "my.content.widget";\n\t},\n\tgetDomNode: function () {\n\t\tif (!this.domNode) {\n\t\t\tthis.domNode = document.createElement("div");\n\t\t\tthis.domNode.innerHTML = "My content widget";\n\t\t\tthis.domNode.style.background = "grey";\n\t\t}\n\t\treturn this.domNode;\n\t},\n\tgetPosition: function () {\n\t\treturn {\n\t\t\tposition: {\n\t\t\t\tlineNumber: 7,\n\t\t\t\tcolumn: 8,\n\t\t\t},\n\t\t\tpreference: [\n\t\t\t\tmonaco.editor.ContentWidgetPositionPreference.ABOVE,\n\t\t\t\tmonaco.editor.ContentWidgetPositionPreference.BELOW,\n\t\t\t],\n\t\t};\n\t},\n};\neditor.addContentWidget(contentWidget);\n\n// Add an overlay widget\nvar overlayWidget = {\n\tdomNode: null,\n\tgetId: function () {\n\t\treturn "my.overlay.widget";\n\t},\n\tgetDomNode: function () {\n\t\tif (!this.domNode) {\n\t\t\tthis.domNode = document.createElement("div");\n\t\t\tthis.domNode.innerHTML = "My overlay widget";\n\t\t\tthis.domNode.style.background = "grey";\n\t\t\tthis.domNode.style.right = "30px";\n\t\t\tthis.domNode.style.top = "50px";\n\t\t}\n\t\treturn this.domNode;\n\t},\n\tgetPosition: function () {\n\t\treturn null;\n\t},\n};\neditor.addOverlayWidget(overlayWidget);\n\nvar output = document.getElementById("output");\nfunction showEvent(str) {\n\twhile (output.childNodes.length > 6) {\n\t\toutput.removeChild(output.firstChild.nextSibling.nextSibling);\n\t}\n\toutput.appendChild(document.createTextNode(str));\n\toutput.appendChild(document.createElement("br"));\n}\n\neditor.onMouseMove(function (e) {\n\tshowEvent("mousemove - " + e.target.toString());\n});\neditor.onMouseDown(function (e) {\n\tshowEvent("mousedown - " + e.target.toString());\n});\neditor.onContextMenu(function (e) {\n\tshowEvent("contextmenu - " + e.target.toString());\n});\neditor.onMouseLeave(function (e) {\n\tshowEvent("mouseleave");\n});\n'}}]);
|
||||
"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[2694],{2694:(t,n,e)=>{e.r(n),e.d(n,{default:()=>o});const o='var jsCode = [\n\t\'"use strict";\',\n\t"function Person(age) {",\n\t"\tif (age) {",\n\t"\t\tthis.age = age;",\n\t"\t}",\n\t"}",\n\t"Person.prototype.getAge = function () {",\n\t"\treturn this.age;",\n\t"};",\n].join("\\n");\n\nvar editor = monaco.editor.create(document.getElementById("container"), {\n\tvalue: jsCode,\n\tlanguage: "javascript",\n\tglyphMargin: true,\n\tcontextmenu: false,\n});\n\nvar decorations = editor.deltaDecorations(\n\t[],\n\t[\n\t\t{\n\t\t\trange: new monaco.Range(3, 1, 3, 1),\n\t\t\toptions: {\n\t\t\t\tisWholeLine: true,\n\t\t\t\tclassName: "myContentClass",\n\t\t\t\tglyphMarginClassName: "myGlyphMarginClass",\n\t\t\t},\n\t\t},\n\t]\n);\n\n// Add a zone to make hit testing more interesting\nvar viewZoneId = null;\neditor.changeViewZones(function (changeAccessor) {\n\tvar domNode = document.createElement("div");\n\tdomNode.style.background = "lightgreen";\n\tviewZoneId = changeAccessor.addZone({\n\t\tafterLineNumber: 3,\n\t\theightInLines: 3,\n\t\tdomNode: domNode,\n\t});\n});\n\n// Add a content widget (scrolls inline with text)\nvar contentWidget = {\n\tdomNode: (function () {\n\t\tvar domNode = document.createElement("div");\n\t\tdomNode.innerHTML = "My content widget";\n\t\tdomNode.style.background = "grey";\n\t\treturn domNode;\n\t})(),\n\tgetId: function () {\n\t\treturn "my.content.widget";\n\t},\n\tgetDomNode: function () {\n\t\treturn this.domNode;\n\t},\n\tgetPosition: function () {\n\t\treturn {\n\t\t\tposition: {\n\t\t\t\tlineNumber: 7,\n\t\t\t\tcolumn: 8,\n\t\t\t},\n\t\t\tpreference: [\n\t\t\t\tmonaco.editor.ContentWidgetPositionPreference.ABOVE,\n\t\t\t\tmonaco.editor.ContentWidgetPositionPreference.BELOW,\n\t\t\t],\n\t\t};\n\t},\n};\neditor.addContentWidget(contentWidget);\n\n// Add an overlay widget\nvar overlayWidget = {\n\tdomNode: (function () {\n\t\tvar domNode = document.createElement("div");\n\t\tdomNode.innerHTML = "My overlay widget";\n\t\tdomNode.style.background = "grey";\n\t\tdomNode.style.right = "30px";\n\t\tdomNode.style.top = "50px";\n\t\treturn domNode;\n\t})(),\n\tgetId: function () {\n\t\treturn "my.overlay.widget";\n\t},\n\tgetDomNode: function () {\n\t\treturn this.domNode;\n\t},\n\tgetPosition: function () {\n\t\treturn null;\n\t},\n};\neditor.addOverlayWidget(overlayWidget);\n\nvar output = document.getElementById("output");\nfunction showEvent(str) {\n\twhile (output.childNodes.length > 6) {\n\t\toutput.removeChild(output.firstChild.nextSibling.nextSibling);\n\t}\n\toutput.appendChild(document.createTextNode(str));\n\toutput.appendChild(document.createElement("br"));\n}\n\neditor.onMouseMove(function (e) {\n\tshowEvent("mousemove - " + e.target.toString());\n});\neditor.onMouseDown(function (e) {\n\tshowEvent("mousedown - " + e.target.toString());\n});\neditor.onContextMenu(function (e) {\n\tshowEvent("contextmenu - " + e.target.toString());\n});\neditor.onMouseLeave(function (e) {\n\tshowEvent("mouseleave");\n});\n'}}]);
|
||||
//# sourceMappingURL=2694.js.map
|
||||
|
|
@ -1 +1 @@
|
|||
{"version":3,"file":"2694.js","mappings":"8IAAA,g6F","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/interacting-with-the-editor/listening-to-mouse-events/sample.js"],"sourcesContent":["export default \"var jsCode = [\\n\\t'\\\"use strict\\\";',\\n\\t\\\"function Person(age) {\\\",\\n\\t\\\"\\tif (age) {\\\",\\n\\t\\\"\\t\\tthis.age = age;\\\",\\n\\t\\\"\\t}\\\",\\n\\t\\\"}\\\",\\n\\t\\\"Person.prototype.getAge = function () {\\\",\\n\\t\\\"\\treturn this.age;\\\",\\n\\t\\\"};\\\",\\n].join(\\\"\\\\n\\\");\\n\\nvar editor = monaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue: jsCode,\\n\\tlanguage: \\\"javascript\\\",\\n\\tglyphMargin: true,\\n\\tcontextmenu: false,\\n});\\n\\nvar decorations = editor.deltaDecorations(\\n\\t[],\\n\\t[\\n\\t\\t{\\n\\t\\t\\trange: new monaco.Range(3, 1, 3, 1),\\n\\t\\t\\toptions: {\\n\\t\\t\\t\\tisWholeLine: true,\\n\\t\\t\\t\\tclassName: \\\"myContentClass\\\",\\n\\t\\t\\t\\tglyphMarginClassName: \\\"myGlyphMarginClass\\\",\\n\\t\\t\\t},\\n\\t\\t},\\n\\t]\\n);\\n\\n// Add a zone to make hit testing more interesting\\nvar viewZoneId = null;\\neditor.changeViewZones(function (changeAccessor) {\\n\\tvar domNode = document.createElement(\\\"div\\\");\\n\\tdomNode.style.background = \\\"lightgreen\\\";\\n\\tviewZoneId = changeAccessor.addZone({\\n\\t\\tafterLineNumber: 3,\\n\\t\\theightInLines: 3,\\n\\t\\tdomNode: domNode,\\n\\t});\\n});\\n\\n// Add a content widget (scrolls inline with text)\\nvar contentWidget = {\\n\\tdomNode: null,\\n\\tgetId: function () {\\n\\t\\treturn \\\"my.content.widget\\\";\\n\\t},\\n\\tgetDomNode: function () {\\n\\t\\tif (!this.domNode) {\\n\\t\\t\\tthis.domNode = document.createElement(\\\"div\\\");\\n\\t\\t\\tthis.domNode.innerHTML = \\\"My content widget\\\";\\n\\t\\t\\tthis.domNode.style.background = \\\"grey\\\";\\n\\t\\t}\\n\\t\\treturn this.domNode;\\n\\t},\\n\\tgetPosition: function () {\\n\\t\\treturn {\\n\\t\\t\\tposition: {\\n\\t\\t\\t\\tlineNumber: 7,\\n\\t\\t\\t\\tcolumn: 8,\\n\\t\\t\\t},\\n\\t\\t\\tpreference: [\\n\\t\\t\\t\\tmonaco.editor.ContentWidgetPositionPreference.ABOVE,\\n\\t\\t\\t\\tmonaco.editor.ContentWidgetPositionPreference.BELOW,\\n\\t\\t\\t],\\n\\t\\t};\\n\\t},\\n};\\neditor.addContentWidget(contentWidget);\\n\\n// Add an overlay widget\\nvar overlayWidget = {\\n\\tdomNode: null,\\n\\tgetId: function () {\\n\\t\\treturn \\\"my.overlay.widget\\\";\\n\\t},\\n\\tgetDomNode: function () {\\n\\t\\tif (!this.domNode) {\\n\\t\\t\\tthis.domNode = document.createElement(\\\"div\\\");\\n\\t\\t\\tthis.domNode.innerHTML = \\\"My overlay widget\\\";\\n\\t\\t\\tthis.domNode.style.background = \\\"grey\\\";\\n\\t\\t\\tthis.domNode.style.right = \\\"30px\\\";\\n\\t\\t\\tthis.domNode.style.top = \\\"50px\\\";\\n\\t\\t}\\n\\t\\treturn this.domNode;\\n\\t},\\n\\tgetPosition: function () {\\n\\t\\treturn null;\\n\\t},\\n};\\neditor.addOverlayWidget(overlayWidget);\\n\\nvar output = document.getElementById(\\\"output\\\");\\nfunction showEvent(str) {\\n\\twhile (output.childNodes.length > 6) {\\n\\t\\toutput.removeChild(output.firstChild.nextSibling.nextSibling);\\n\\t}\\n\\toutput.appendChild(document.createTextNode(str));\\n\\toutput.appendChild(document.createElement(\\\"br\\\"));\\n}\\n\\neditor.onMouseMove(function (e) {\\n\\tshowEvent(\\\"mousemove - \\\" + e.target.toString());\\n});\\neditor.onMouseDown(function (e) {\\n\\tshowEvent(\\\"mousedown - \\\" + e.target.toString());\\n});\\neditor.onContextMenu(function (e) {\\n\\tshowEvent(\\\"contextmenu - \\\" + e.target.toString());\\n});\\neditor.onMouseLeave(function (e) {\\n\\tshowEvent(\\\"mouseleave\\\");\\n});\\n\";"],"names":[],"sourceRoot":""}
|
||||
{"version":3,"file":"2694.js","mappings":"8IAAA,43F","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/interacting-with-the-editor/listening-to-mouse-events/sample.js"],"sourcesContent":["export default \"var jsCode = [\\n\\t'\\\"use strict\\\";',\\n\\t\\\"function Person(age) {\\\",\\n\\t\\\"\\tif (age) {\\\",\\n\\t\\\"\\t\\tthis.age = age;\\\",\\n\\t\\\"\\t}\\\",\\n\\t\\\"}\\\",\\n\\t\\\"Person.prototype.getAge = function () {\\\",\\n\\t\\\"\\treturn this.age;\\\",\\n\\t\\\"};\\\",\\n].join(\\\"\\\\n\\\");\\n\\nvar editor = monaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue: jsCode,\\n\\tlanguage: \\\"javascript\\\",\\n\\tglyphMargin: true,\\n\\tcontextmenu: false,\\n});\\n\\nvar decorations = editor.deltaDecorations(\\n\\t[],\\n\\t[\\n\\t\\t{\\n\\t\\t\\trange: new monaco.Range(3, 1, 3, 1),\\n\\t\\t\\toptions: {\\n\\t\\t\\t\\tisWholeLine: true,\\n\\t\\t\\t\\tclassName: \\\"myContentClass\\\",\\n\\t\\t\\t\\tglyphMarginClassName: \\\"myGlyphMarginClass\\\",\\n\\t\\t\\t},\\n\\t\\t},\\n\\t]\\n);\\n\\n// Add a zone to make hit testing more interesting\\nvar viewZoneId = null;\\neditor.changeViewZones(function (changeAccessor) {\\n\\tvar domNode = document.createElement(\\\"div\\\");\\n\\tdomNode.style.background = \\\"lightgreen\\\";\\n\\tviewZoneId = changeAccessor.addZone({\\n\\t\\tafterLineNumber: 3,\\n\\t\\theightInLines: 3,\\n\\t\\tdomNode: domNode,\\n\\t});\\n});\\n\\n// Add a content widget (scrolls inline with text)\\nvar contentWidget = {\\n\\tdomNode: (function () {\\n\\t\\tvar domNode = document.createElement(\\\"div\\\");\\n\\t\\tdomNode.innerHTML = \\\"My content widget\\\";\\n\\t\\tdomNode.style.background = \\\"grey\\\";\\n\\t\\treturn domNode;\\n\\t})(),\\n\\tgetId: function () {\\n\\t\\treturn \\\"my.content.widget\\\";\\n\\t},\\n\\tgetDomNode: function () {\\n\\t\\treturn this.domNode;\\n\\t},\\n\\tgetPosition: function () {\\n\\t\\treturn {\\n\\t\\t\\tposition: {\\n\\t\\t\\t\\tlineNumber: 7,\\n\\t\\t\\t\\tcolumn: 8,\\n\\t\\t\\t},\\n\\t\\t\\tpreference: [\\n\\t\\t\\t\\tmonaco.editor.ContentWidgetPositionPreference.ABOVE,\\n\\t\\t\\t\\tmonaco.editor.ContentWidgetPositionPreference.BELOW,\\n\\t\\t\\t],\\n\\t\\t};\\n\\t},\\n};\\neditor.addContentWidget(contentWidget);\\n\\n// Add an overlay widget\\nvar overlayWidget = {\\n\\tdomNode: (function () {\\n\\t\\tvar domNode = document.createElement(\\\"div\\\");\\n\\t\\tdomNode.innerHTML = \\\"My overlay widget\\\";\\n\\t\\tdomNode.style.background = \\\"grey\\\";\\n\\t\\tdomNode.style.right = \\\"30px\\\";\\n\\t\\tdomNode.style.top = \\\"50px\\\";\\n\\t\\treturn domNode;\\n\\t})(),\\n\\tgetId: function () {\\n\\t\\treturn \\\"my.overlay.widget\\\";\\n\\t},\\n\\tgetDomNode: function () {\\n\\t\\treturn this.domNode;\\n\\t},\\n\\tgetPosition: function () {\\n\\t\\treturn null;\\n\\t},\\n};\\neditor.addOverlayWidget(overlayWidget);\\n\\nvar output = document.getElementById(\\\"output\\\");\\nfunction showEvent(str) {\\n\\twhile (output.childNodes.length > 6) {\\n\\t\\toutput.removeChild(output.firstChild.nextSibling.nextSibling);\\n\\t}\\n\\toutput.appendChild(document.createTextNode(str));\\n\\toutput.appendChild(document.createElement(\\\"br\\\"));\\n}\\n\\neditor.onMouseMove(function (e) {\\n\\tshowEvent(\\\"mousemove - \\\" + e.target.toString());\\n});\\neditor.onMouseDown(function (e) {\\n\\tshowEvent(\\\"mousedown - \\\" + e.target.toString());\\n});\\neditor.onContextMenu(function (e) {\\n\\tshowEvent(\\\"contextmenu - \\\" + e.target.toString());\\n});\\neditor.onMouseLeave(function (e) {\\n\\tshowEvent(\\\"mouseleave\\\");\\n});\\n\";"],"names":[],"sourceRoot":""}
|
||||
2
3180.js
2
3180.js
|
|
@ -1,2 +1,2 @@
|
|||
"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[3180],{3180:(t,n,e)=>{e.r(n),e.d(n,{default:()=>a});const a='const value = `\nconst f = (a, b) => a + b;\n\nconst result = f(2, 5);\n`;\n\nconst editor = monaco.editor.create(document.getElementById("container"), {\n\tvalue,\n\tlanguage: "javascript",\n});\n\nmonaco.languages.registerInlayHintsProvider("javascript", {\n\tprovideInlayHints(model, range, token) {\n\t\treturn [\n\t\t\t{\n\t\t\t\tkind: monaco.languages.InlayHintKind.Type,\n\t\t\t\tposition: { column: 13, lineNumber: 4 },\n\t\t\t\ttext: `: Number`,\n\t\t\t},\n\t\t\t{\n\t\t\t\tkind: monaco.languages.InlayHintKind.Type,\n\t\t\t\tposition: { column: 13, lineNumber: 2 },\n\t\t\t\ttext: `: Number`,\n\t\t\t},\n\t\t\t{\n\t\t\t\tkind: monaco.languages.InlayHintKind.Type,\n\t\t\t\tposition: { column: 16, lineNumber: 2 },\n\t\t\t\ttext: `: Number`,\n\t\t\t\twhitespaceBefore: true, // see difference between a and b parameter\n\t\t\t},\n\t\t\t{\n\t\t\t\tkind: monaco.languages.InlayHintKind.Parameter,\n\t\t\t\tposition: { column: 18, lineNumber: 4 },\n\t\t\t\ttext: `a:`,\n\t\t\t},\n\t\t\t{\n\t\t\t\tkind: monaco.languages.InlayHintKind.Parameter,\n\t\t\t\tposition: { column: 21, lineNumber: 4 },\n\t\t\t\ttext: `b:`,\n\t\t\t\twhitespaceAfter: true, // similar to whitespaceBefore\n\t\t\t},\n\t\t];\n\t},\n});\n'}}]);
|
||||
"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[3180],{3180:(t,n,e)=>{e.r(n),e.d(n,{default:()=>a});const a='const value = `\nconst f = (a, b) => a + b;\n\nconst result = f(2, 5);\n`;\n\nconst editor = monaco.editor.create(document.getElementById("container"), {\n\tvalue,\n\tlanguage: "javascript",\n});\n\nmonaco.languages.registerInlayHintsProvider("javascript", {\n\tprovideInlayHints(model, range, token) {\n\t\treturn {\n\t\t\thints: [\n\t\t\t\t{\n\t\t\t\t\tkind: monaco.languages.InlayHintKind.Type,\n\t\t\t\t\tposition: { column: 13, lineNumber: 4 },\n\t\t\t\t\tlabel: `: Number`,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tkind: monaco.languages.InlayHintKind.Type,\n\t\t\t\t\tposition: { column: 13, lineNumber: 2 },\n\t\t\t\t\tlabel: `: Number`,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tkind: monaco.languages.InlayHintKind.Type,\n\t\t\t\t\tposition: { column: 16, lineNumber: 2 },\n\t\t\t\t\tlabel: `: Number`,\n\t\t\t\t\twhitespaceBefore: true, // see difference between a and b parameter\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tkind: monaco.languages.InlayHintKind.Parameter,\n\t\t\t\t\tposition: { column: 18, lineNumber: 4 },\n\t\t\t\t\tlabel: `a:`,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tkind: monaco.languages.InlayHintKind.Parameter,\n\t\t\t\t\tposition: { column: 21, lineNumber: 4 },\n\t\t\t\t\tlabel: `b:`,\n\t\t\t\t\twhitespaceAfter: true, // similar to whitespaceBefore\n\t\t\t\t},\n\t\t\t],\n\t\t\tdispose: () => {},\n\t\t};\n\t},\n});\n'}}]);
|
||||
//# sourceMappingURL=3180.js.map
|
||||
|
|
@ -1 +1 @@
|
|||
{"version":3,"file":"3180.js","mappings":"8IAAA,ysC","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/extending-language-services/inlay-hints-provider-example/sample.js"],"sourcesContent":["export default \"const value = `\\nconst f = (a, b) => a + b;\\n\\nconst result = f(2, 5);\\n`;\\n\\nconst editor = monaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue,\\n\\tlanguage: \\\"javascript\\\",\\n});\\n\\nmonaco.languages.registerInlayHintsProvider(\\\"javascript\\\", {\\n\\tprovideInlayHints(model, range, token) {\\n\\t\\treturn [\\n\\t\\t\\t{\\n\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Type,\\n\\t\\t\\t\\tposition: { column: 13, lineNumber: 4 },\\n\\t\\t\\t\\ttext: `: Number`,\\n\\t\\t\\t},\\n\\t\\t\\t{\\n\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Type,\\n\\t\\t\\t\\tposition: { column: 13, lineNumber: 2 },\\n\\t\\t\\t\\ttext: `: Number`,\\n\\t\\t\\t},\\n\\t\\t\\t{\\n\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Type,\\n\\t\\t\\t\\tposition: { column: 16, lineNumber: 2 },\\n\\t\\t\\t\\ttext: `: Number`,\\n\\t\\t\\t\\twhitespaceBefore: true, // see difference between a and b parameter\\n\\t\\t\\t},\\n\\t\\t\\t{\\n\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Parameter,\\n\\t\\t\\t\\tposition: { column: 18, lineNumber: 4 },\\n\\t\\t\\t\\ttext: `a:`,\\n\\t\\t\\t},\\n\\t\\t\\t{\\n\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Parameter,\\n\\t\\t\\t\\tposition: { column: 21, lineNumber: 4 },\\n\\t\\t\\t\\ttext: `b:`,\\n\\t\\t\\t\\twhitespaceAfter: true, // similar to whitespaceBefore\\n\\t\\t\\t},\\n\\t\\t];\\n\\t},\\n});\\n\";"],"names":[],"sourceRoot":""}
|
||||
{"version":3,"file":"3180.js","mappings":"8IAAA,wzC","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/extending-language-services/inlay-hints-provider-example/sample.js"],"sourcesContent":["export default \"const value = `\\nconst f = (a, b) => a + b;\\n\\nconst result = f(2, 5);\\n`;\\n\\nconst editor = monaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue,\\n\\tlanguage: \\\"javascript\\\",\\n});\\n\\nmonaco.languages.registerInlayHintsProvider(\\\"javascript\\\", {\\n\\tprovideInlayHints(model, range, token) {\\n\\t\\treturn {\\n\\t\\t\\thints: [\\n\\t\\t\\t\\t{\\n\\t\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Type,\\n\\t\\t\\t\\t\\tposition: { column: 13, lineNumber: 4 },\\n\\t\\t\\t\\t\\tlabel: `: Number`,\\n\\t\\t\\t\\t},\\n\\t\\t\\t\\t{\\n\\t\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Type,\\n\\t\\t\\t\\t\\tposition: { column: 13, lineNumber: 2 },\\n\\t\\t\\t\\t\\tlabel: `: Number`,\\n\\t\\t\\t\\t},\\n\\t\\t\\t\\t{\\n\\t\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Type,\\n\\t\\t\\t\\t\\tposition: { column: 16, lineNumber: 2 },\\n\\t\\t\\t\\t\\tlabel: `: Number`,\\n\\t\\t\\t\\t\\twhitespaceBefore: true, // see difference between a and b parameter\\n\\t\\t\\t\\t},\\n\\t\\t\\t\\t{\\n\\t\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Parameter,\\n\\t\\t\\t\\t\\tposition: { column: 18, lineNumber: 4 },\\n\\t\\t\\t\\t\\tlabel: `a:`,\\n\\t\\t\\t\\t},\\n\\t\\t\\t\\t{\\n\\t\\t\\t\\t\\tkind: monaco.languages.InlayHintKind.Parameter,\\n\\t\\t\\t\\t\\tposition: { column: 21, lineNumber: 4 },\\n\\t\\t\\t\\t\\tlabel: `b:`,\\n\\t\\t\\t\\t\\twhitespaceAfter: true, // similar to whitespaceBefore\\n\\t\\t\\t\\t},\\n\\t\\t\\t],\\n\\t\\t\\tdispose: () => {},\\n\\t\\t};\\n\\t},\\n});\\n\";"],"names":[],"sourceRoot":""}
|
||||
2
3439.js
2
3439.js
|
|
@ -1,2 +1,2 @@
|
|||
"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[3439],{5932:(e,t,n)=>{n.r(t),n.d(t,{default:()=>l});const l='// The colorizeElement-function will read the data-lang-attribute\n// from the element to select the correct language mode. In this\n// sample it is text/css.\nmonaco.editor.colorizeElement(document.getElementById("code"));\n'}}]);
|
||||
"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[3439],{5932:(e,t,n)=>{n.r(t),n.d(t,{default:()=>l});const l='// The colorizeElement-function will read the data-lang-attribute\n// from the element to select the correct language mode. In this\n// sample it is text/css.\nmonaco.editor.colorizeElement(document.getElementById("code"), {});\n'}}]);
|
||||
//# sourceMappingURL=3439.js.map
|
||||
|
|
@ -1 +1 @@
|
|||
{"version":3,"file":"3439.js","mappings":"8IAAA,2O","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/creating-the-editor/syntax-highlighting-for-html-elements/sample.js"],"sourcesContent":["export default \"// The colorizeElement-function will read the data-lang-attribute\\n// from the element to select the correct language mode. In this\\n// sample it is text/css.\\nmonaco.editor.colorizeElement(document.getElementById(\\\"code\\\"));\\n\";"],"names":[],"sourceRoot":""}
|
||||
{"version":3,"file":"3439.js","mappings":"8IAAA,+O","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/creating-the-editor/syntax-highlighting-for-html-elements/sample.js"],"sourcesContent":["export default \"// The colorizeElement-function will read the data-lang-attribute\\n// from the element to select the correct language mode. In this\\n// sample it is text/css.\\nmonaco.editor.colorizeElement(document.getElementById(\\\"code\\\"), {});\\n\";"],"names":[],"sourceRoot":""}
|
||||
2
7034.js
2
7034.js
|
|
@ -1,2 +1,2 @@
|
|||
"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[7034],{7034:(n,t,e)=>{e.r(t),e.d(t,{default:()=>o});const o='var jsCode = [\n\t\'"use strict";\',\n\t"function Person(age) {",\n\t"\tif (age) {",\n\t"\t\tthis.age = age;",\n\t"\t}",\n\t"}",\n\t"Person.prototype.getAge = function () {",\n\t"\treturn this.age;",\n\t"};",\n].join("\\n");\n\nvar editor = monaco.editor.create(document.getElementById("container"), {\n\tvalue: jsCode,\n\tlanguage: "javascript",\n});\n\nvar myCondition1 = editor.createContextKey(\n\t/*key name*/ "myCondition1",\n\t/*default value*/ false\n);\nvar myCondition2 = editor.createContextKey(\n\t/*key name*/ "myCondition2",\n\t/*default value*/ false\n);\n\neditor.addCommand(\n\tmonaco.KeyCode.Tab,\n\tfunction () {\n\t\t// services available in `ctx`\n\t\talert("my command is executing!");\n\t},\n\t"myCondition1 && myCondition2"\n);\n\nmyCondition1.set(true);\n\nsetTimeout(function () {\n\talert("now enabling also myCondition2, try pressing Tab!");\n\tmyCondition2.set(true);\n\t// you can use myCondition2.reset() to go back to the default\n}, 2000);\n'}}]);
|
||||
"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[7034],{7034:(n,t,e)=>{e.r(t),e.d(t,{default:()=>o});const o='var jsCode = [\n\t\'"use strict";\',\n\t"function Person(age) {",\n\t"\tif (age) {",\n\t"\t\tthis.age = age;",\n\t"\t}",\n\t"}",\n\t"Person.prototype.getAge = function () {",\n\t"\treturn this.age;",\n\t"};",\n].join("\\n");\n\nvar editor = monaco.editor.create(document.getElementById("container"), {\n\tvalue: jsCode,\n\tlanguage: "javascript",\n});\n\nvar myCondition1 = editor.createContextKey(\n\t/*key name*/ "myCondition1",\n\t/*default value*/ false\n);\nvar myCondition2 = editor.createContextKey(\n\t/*key name*/ "myCondition2",\n\t/*default value*/ false\n);\n\neditor.addCommand(\n\tmonaco.KeyCode.Tab,\n\tfunction () {\n\t\t// services available in `ctx`\n\t\talert("my command is executing!");\n\t},\n\t"myCondition1 && myCondition2"\n);\n// @ts-ignore\nmyCondition1.set(true);\n\nsetTimeout(function () {\n\talert("now enabling also myCondition2, try pressing Tab!");\n\t// @ts-ignore\n\tmyCondition2.set(true);\n\t// you can use myCondition2.reset() to go back to the default\n}, 2000);\n'}}]);
|
||||
//# sourceMappingURL=7034.js.map
|
||||
|
|
@ -1 +1 @@
|
|||
{"version":3,"file":"7034.js","mappings":"8IAAA,w9B","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/interacting-with-the-editor/adding-a-command-to-an-editor-instance/sample.js"],"sourcesContent":["export default \"var jsCode = [\\n\\t'\\\"use strict\\\";',\\n\\t\\\"function Person(age) {\\\",\\n\\t\\\"\\tif (age) {\\\",\\n\\t\\\"\\t\\tthis.age = age;\\\",\\n\\t\\\"\\t}\\\",\\n\\t\\\"}\\\",\\n\\t\\\"Person.prototype.getAge = function () {\\\",\\n\\t\\\"\\treturn this.age;\\\",\\n\\t\\\"};\\\",\\n].join(\\\"\\\\n\\\");\\n\\nvar editor = monaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue: jsCode,\\n\\tlanguage: \\\"javascript\\\",\\n});\\n\\nvar myCondition1 = editor.createContextKey(\\n\\t/*key name*/ \\\"myCondition1\\\",\\n\\t/*default value*/ false\\n);\\nvar myCondition2 = editor.createContextKey(\\n\\t/*key name*/ \\\"myCondition2\\\",\\n\\t/*default value*/ false\\n);\\n\\neditor.addCommand(\\n\\tmonaco.KeyCode.Tab,\\n\\tfunction () {\\n\\t\\t// services available in `ctx`\\n\\t\\talert(\\\"my command is executing!\\\");\\n\\t},\\n\\t\\\"myCondition1 && myCondition2\\\"\\n);\\n\\nmyCondition1.set(true);\\n\\nsetTimeout(function () {\\n\\talert(\\\"now enabling also myCondition2, try pressing Tab!\\\");\\n\\tmyCondition2.set(true);\\n\\t// you can use myCondition2.reset() to go back to the default\\n}, 2000);\\n\";"],"names":[],"sourceRoot":""}
|
||||
{"version":3,"file":"7034.js","mappings":"8IAAA,s/B","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/interacting-with-the-editor/adding-a-command-to-an-editor-instance/sample.js"],"sourcesContent":["export default \"var jsCode = [\\n\\t'\\\"use strict\\\";',\\n\\t\\\"function Person(age) {\\\",\\n\\t\\\"\\tif (age) {\\\",\\n\\t\\\"\\t\\tthis.age = age;\\\",\\n\\t\\\"\\t}\\\",\\n\\t\\\"}\\\",\\n\\t\\\"Person.prototype.getAge = function () {\\\",\\n\\t\\\"\\treturn this.age;\\\",\\n\\t\\\"};\\\",\\n].join(\\\"\\\\n\\\");\\n\\nvar editor = monaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue: jsCode,\\n\\tlanguage: \\\"javascript\\\",\\n});\\n\\nvar myCondition1 = editor.createContextKey(\\n\\t/*key name*/ \\\"myCondition1\\\",\\n\\t/*default value*/ false\\n);\\nvar myCondition2 = editor.createContextKey(\\n\\t/*key name*/ \\\"myCondition2\\\",\\n\\t/*default value*/ false\\n);\\n\\neditor.addCommand(\\n\\tmonaco.KeyCode.Tab,\\n\\tfunction () {\\n\\t\\t// services available in `ctx`\\n\\t\\talert(\\\"my command is executing!\\\");\\n\\t},\\n\\t\\\"myCondition1 && myCondition2\\\"\\n);\\n// @ts-ignore\\nmyCondition1.set(true);\\n\\nsetTimeout(function () {\\n\\talert(\\\"now enabling also myCondition2, try pressing Tab!\\\");\\n\\t// @ts-ignore\\n\\tmyCondition2.set(true);\\n\\t// you can use myCondition2.reset() to go back to the default\\n}, 2000);\\n\";"],"names":[],"sourceRoot":""}
|
||||
2
8470.js
2
8470.js
|
|
@ -1,2 +1,2 @@
|
|||
"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[8470],{8470:(t,n,e)=>{e.r(n),e.d(n,{default:()=>a});const a='// Add additional d.ts files to the JavaScript language service and change.\n// Also change the default compilation options.\n// The sample below shows how a class Facts is declared and introduced\n// to the system and how the compiler is told to use ES6 (target=2).\n\n// validation settings\nmonaco.languages.typescript.javascriptDefaults.setDiagnosticsOptions({\n\tnoSemanticValidation: true,\n\tnoSyntaxValidation: false,\n});\n\n// compiler options\nmonaco.languages.typescript.javascriptDefaults.setCompilerOptions({\n\ttarget: monaco.languages.typescript.ScriptTarget.ES6,\n\tallowNonTsExtensions: true,\n});\n\n// extra libraries\nvar libSource = [\n\t"declare class Facts {",\n\t" /**",\n\t" * Returns the next fact",\n\t" */",\n\t" static next():string",\n\t"}",\n].join("\\n");\nvar libUri = "ts:filename/facts.d.ts";\nmonaco.languages.typescript.javascriptDefaults.addExtraLib(libSource, libUri);\n// When resolving definitions and references, the editor will try to use created models.\n// Creating a model for the library allows "peek definition/references" commands to work with the library.\nmonaco.editor.createModel(libSource, "typescript", monaco.Uri.parse(libUri));\n\nvar jsCode = [\n\t\'"use strict";\',\n\t"",\n\t"class Chuck {",\n\t" greet() {",\n\t" return Facts.next();",\n\t" }",\n\t"}",\n].join("\\n");\n\nmonaco.editor.create(document.getElementById("container"), {\n\tvalue: jsCode,\n\tlanguage: "javascript",\n});\n'}}]);
|
||||
"use strict";(self.webpackChunkmy_application=self.webpackChunkmy_application||[]).push([[8470],{8470:(t,n,e)=>{e.r(n),e.d(n,{default:()=>a});const a='// Add additional d.ts files to the JavaScript language service and change.\n// Also change the default compilation options.\n// The sample below shows how a class Facts is declared and introduced\n// to the system and how the compiler is told to use ES6 (target=2).\n\n// validation settings\nmonaco.languages.typescript.javascriptDefaults.setDiagnosticsOptions({\n\tnoSemanticValidation: true,\n\tnoSyntaxValidation: false,\n});\n\n// compiler options\nmonaco.languages.typescript.javascriptDefaults.setCompilerOptions({\n\ttarget: monaco.languages.typescript.ScriptTarget.ES2015,\n\tallowNonTsExtensions: true,\n});\n\n// extra libraries\nvar libSource = [\n\t"declare class Facts {",\n\t" /**",\n\t" * Returns the next fact",\n\t" */",\n\t" static next():string",\n\t"}",\n].join("\\n");\nvar libUri = "ts:filename/facts.d.ts";\nmonaco.languages.typescript.javascriptDefaults.addExtraLib(libSource, libUri);\n// When resolving definitions and references, the editor will try to use created models.\n// Creating a model for the library allows "peek definition/references" commands to work with the library.\nmonaco.editor.createModel(libSource, "typescript", monaco.Uri.parse(libUri));\n\nvar jsCode = [\n\t\'"use strict";\',\n\t"",\n\t"class Chuck {",\n\t" greet() {",\n\t" return Facts.next();",\n\t" }",\n\t"}",\n].join("\\n");\n\nmonaco.editor.create(document.getElementById("container"), {\n\tvalue: jsCode,\n\tlanguage: "javascript",\n});\n'}}]);
|
||||
//# sourceMappingURL=8470.js.map
|
||||
|
|
@ -1 +1 @@
|
|||
{"version":3,"file":"8470.js","mappings":"8IAAA,28C","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/extending-language-services/configure-javascript-defaults/sample.js"],"sourcesContent":["export default \"// Add additional d.ts files to the JavaScript language service and change.\\n// Also change the default compilation options.\\n// The sample below shows how a class Facts is declared and introduced\\n// to the system and how the compiler is told to use ES6 (target=2).\\n\\n// validation settings\\nmonaco.languages.typescript.javascriptDefaults.setDiagnosticsOptions({\\n\\tnoSemanticValidation: true,\\n\\tnoSyntaxValidation: false,\\n});\\n\\n// compiler options\\nmonaco.languages.typescript.javascriptDefaults.setCompilerOptions({\\n\\ttarget: monaco.languages.typescript.ScriptTarget.ES6,\\n\\tallowNonTsExtensions: true,\\n});\\n\\n// extra libraries\\nvar libSource = [\\n\\t\\\"declare class Facts {\\\",\\n\\t\\\" /**\\\",\\n\\t\\\" * Returns the next fact\\\",\\n\\t\\\" */\\\",\\n\\t\\\" static next():string\\\",\\n\\t\\\"}\\\",\\n].join(\\\"\\\\n\\\");\\nvar libUri = \\\"ts:filename/facts.d.ts\\\";\\nmonaco.languages.typescript.javascriptDefaults.addExtraLib(libSource, libUri);\\n// When resolving definitions and references, the editor will try to use created models.\\n// Creating a model for the library allows \\\"peek definition/references\\\" commands to work with the library.\\nmonaco.editor.createModel(libSource, \\\"typescript\\\", monaco.Uri.parse(libUri));\\n\\nvar jsCode = [\\n\\t'\\\"use strict\\\";',\\n\\t\\\"\\\",\\n\\t\\\"class Chuck {\\\",\\n\\t\\\" greet() {\\\",\\n\\t\\\" return Facts.next();\\\",\\n\\t\\\" }\\\",\\n\\t\\\"}\\\",\\n].join(\\\"\\\\n\\\");\\n\\nmonaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue: jsCode,\\n\\tlanguage: \\\"javascript\\\",\\n});\\n\";"],"names":[],"sourceRoot":""}
|
||||
{"version":3,"file":"8470.js","mappings":"8IAAA,88C","sources":["file:////home/runner/work/monaco-editor/monaco-editor/website/src/website/data/playground-samples/extending-language-services/configure-javascript-defaults/sample.js"],"sourcesContent":["export default \"// Add additional d.ts files to the JavaScript language service and change.\\n// Also change the default compilation options.\\n// The sample below shows how a class Facts is declared and introduced\\n// to the system and how the compiler is told to use ES6 (target=2).\\n\\n// validation settings\\nmonaco.languages.typescript.javascriptDefaults.setDiagnosticsOptions({\\n\\tnoSemanticValidation: true,\\n\\tnoSyntaxValidation: false,\\n});\\n\\n// compiler options\\nmonaco.languages.typescript.javascriptDefaults.setCompilerOptions({\\n\\ttarget: monaco.languages.typescript.ScriptTarget.ES2015,\\n\\tallowNonTsExtensions: true,\\n});\\n\\n// extra libraries\\nvar libSource = [\\n\\t\\\"declare class Facts {\\\",\\n\\t\\\" /**\\\",\\n\\t\\\" * Returns the next fact\\\",\\n\\t\\\" */\\\",\\n\\t\\\" static next():string\\\",\\n\\t\\\"}\\\",\\n].join(\\\"\\\\n\\\");\\nvar libUri = \\\"ts:filename/facts.d.ts\\\";\\nmonaco.languages.typescript.javascriptDefaults.addExtraLib(libSource, libUri);\\n// When resolving definitions and references, the editor will try to use created models.\\n// Creating a model for the library allows \\\"peek definition/references\\\" commands to work with the library.\\nmonaco.editor.createModel(libSource, \\\"typescript\\\", monaco.Uri.parse(libUri));\\n\\nvar jsCode = [\\n\\t'\\\"use strict\\\";',\\n\\t\\\"\\\",\\n\\t\\\"class Chuck {\\\",\\n\\t\\\" greet() {\\\",\\n\\t\\\" return Facts.next();\\\",\\n\\t\\\" }\\\",\\n\\t\\\"}\\\",\\n].join(\\\"\\\\n\\\");\\n\\nmonaco.editor.create(document.getElementById(\\\"container\\\"), {\\n\\tvalue: jsCode,\\n\\tlanguage: \\\"javascript\\\",\\n});\\n\";"],"names":[],"sourceRoot":""}
|
||||
2
9311.js
2
9311.js
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
9754.js
2
9754.js
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.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||
*-----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/*!-----------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Version: 0.36.1(f20e0c8d472bababab79108dff951ae09460c4ed)
|
||||
* Version: 0.36.1(80ee9b3995bc899f2e89d90aad724a99533f6213)
|
||||
* Released under the MIT license
|
||||
* 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