mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2024-11-07 22:18:29 +01:00
update monaco model and antedit
This commit is contained in:
parent
6440635959
commit
9b4dddec87
@ -1,4 +1,3 @@
|
||||
|
||||
afx-app-window[data-id="am-window"] afx-button{
|
||||
margin: 3px;
|
||||
}
|
||||
|
@ -1,130 +1 @@
|
||||
(function() {
|
||||
// Copyright 2017-2018 Xuan Sang LE <xsang.le AT gmail DOT com>
|
||||
|
||||
// AnTOS Web desktop is is licensed under the GNU General Public
|
||||
// License v3.0, see the LICENCE file for more information
|
||||
|
||||
// This program is free software: you can redistribute it and/or
|
||||
// modify it under the terms of the GNU General Public License as
|
||||
// published by the Free Software Foundation, either version 3 of
|
||||
// the License, or (at your option) any later version.
|
||||
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
// General Public License for more details.
|
||||
|
||||
// You should have received a copy of the GNU General Public License
|
||||
//along with this program. If not, see https://www.gnu.org/licenses/.
|
||||
var ActivityMonitor, _APP, _PM;
|
||||
|
||||
_PM = this.OS.PM;
|
||||
|
||||
_APP = this.OS.application;
|
||||
|
||||
ActivityMonitor = class ActivityMonitor extends this.OS.application.BaseApplication {
|
||||
constructor(args) {
|
||||
super("ActivityMonitor", args);
|
||||
}
|
||||
|
||||
main() {
|
||||
var header;
|
||||
this.scheme.apptitle = "Activity Monitor";
|
||||
this.grid = this.find("mygrid");
|
||||
this.on("btclick", (e) => {
|
||||
var app, data, item;
|
||||
if (e.id !== "btkill") {
|
||||
return;
|
||||
}
|
||||
item = this.grid.selectedRow;
|
||||
if (!item) {
|
||||
return;
|
||||
}
|
||||
data = item.data[0];
|
||||
app = _PM.appByPid(data.text);
|
||||
if (app) {
|
||||
return app.quit(true);
|
||||
}
|
||||
});
|
||||
header = [
|
||||
{
|
||||
width: 50,
|
||||
text: "__(Pid)"
|
||||
},
|
||||
{
|
||||
text: "__(Name)"
|
||||
},
|
||||
{
|
||||
text: "__(Type)",
|
||||
width: 80
|
||||
},
|
||||
{
|
||||
width: 80,
|
||||
text: "__(Alive (ms))"
|
||||
}
|
||||
];
|
||||
this.gdata = {
|
||||
processes: {},
|
||||
alive: []
|
||||
};
|
||||
this.grid.header = header;
|
||||
return this.monitor();
|
||||
}
|
||||
|
||||
monitor() {
|
||||
var now;
|
||||
//get all current running process
|
||||
this.gdata.alive = [];
|
||||
now = (new Date()).getTime();
|
||||
$.each(_PM.processes, (i, d) => {
|
||||
return $.each(d, (j, a) => {
|
||||
if (this.gdata.processes[a.pid]) {
|
||||
this.gdata.processes[a.pid][3].text = now - a.birth;
|
||||
this.gdata.processes[a.pid][3].domel.update(); //add it
|
||||
} else {
|
||||
this.gdata.processes[a.pid] = [
|
||||
{
|
||||
text: a.pid
|
||||
},
|
||||
{
|
||||
icon: _APP[a.name].type === 0 ? _APP[a.name].meta.icon : a.icon,
|
||||
iconclass: _APP[a.name].type === 0 ? _APP[a.name].meta.iconclass : a.iconclass,
|
||||
text: a.name
|
||||
},
|
||||
{
|
||||
text: _APP[a.name].type === 0 ? "__(Application)" : "__(Service)"
|
||||
},
|
||||
{
|
||||
text: now - a.birth
|
||||
}
|
||||
];
|
||||
this.grid.push(this.gdata.processes[a.pid]);
|
||||
}
|
||||
return this.gdata.alive.push(a.pid);
|
||||
});
|
||||
});
|
||||
$.each(this.gdata.processes, (i, e) => {
|
||||
if (($.inArray(Number(i), this.gdata.alive)) < 0) {
|
||||
this.grid.delete(this.gdata.processes[i].domel);
|
||||
this.gdata.processes[i] = void 0;
|
||||
return delete this.gdata.processes[i];
|
||||
}
|
||||
});
|
||||
return this.timer = setTimeout((() => {
|
||||
return this.monitor();
|
||||
}), 500);
|
||||
}
|
||||
|
||||
cleanup(e) {
|
||||
if (this.timer) {
|
||||
return clearTimeout(this.timer);
|
||||
}
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
ActivityMonitor.singleton = true;
|
||||
|
||||
this.OS.register("ActivityMonitor", ActivityMonitor);
|
||||
|
||||
}).call(this);
|
||||
(function(){var t,i,e;e=this.OS.PM,i=this.OS.application,(t=class extends this.OS.application.BaseApplication{constructor(t){super("ActivityMonitor",t)}main(){var t;return this.scheme.apptitle="Activity Monitor",this.grid=this.find("mygrid"),this.on("btclick",t=>{var i,s,a;if("btkill"===t.id&&(a=this.grid.selectedRow))return s=a.data[0],(i=e.appByPid(s.text))?i.quit(!0):void 0}),t=[{width:50,text:"__(Pid)"},{text:"__(Name)"},{text:"__(Type)",width:80},{width:80,text:"__(Alive (ms))"}],this.gdata={processes:{},alive:[]},this.grid.header=t,this.monitor()}monitor(){var t;return this.gdata.alive=[],t=(new Date).getTime(),$.each(e.processes,(e,s)=>$.each(s,(e,s)=>(this.gdata.processes[s.pid]?(this.gdata.processes[s.pid][3].text=t-s.birth,this.grid.update()):(this.gdata.processes[s.pid]=[{text:s.pid},{icon:0===i[s.name].type?i[s.name].meta.icon:s.icon,iconclass:0===i[s.name].type?i[s.name].meta.iconclass:s.iconclass,text:s.name},{text:0===i[s.name].type?"__(Application)":"__(Service)"},{text:t-s.birth}],this.grid.push(this.gdata.processes[s.pid])),this.gdata.alive.push(s.pid)))),$.each(this.gdata.processes,(t,i)=>{if($.inArray(Number(t),this.gdata.alive)<0)return this.grid.delete(this.gdata.processes[t].domel),this.gdata.processes[t]=void 0,delete this.gdata.processes[t]}),this.timer=setTimeout(()=>this.monitor(),500)}cleanup(t){if(this.timer)return clearTimeout(this.timer)}}).singleton=!0,this.OS.register("ActivityMonitor",t)}).call(this);
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"pkgname": "ActivityMonitor",
|
||||
"app":"ActivityMonitor",
|
||||
"name":"Activity monitor",
|
||||
"description":"Processes monitor and manager",
|
||||
@ -6,7 +7,7 @@
|
||||
"author": "Xuan Sang LE",
|
||||
"email": "xsang.le@gmail.com"
|
||||
},
|
||||
"version":"0.0.6-a",
|
||||
"version":"0.0.7-b",
|
||||
"category":"System",
|
||||
"iconclass":"fa fa-heartbeat",
|
||||
"mimes":["none"]
|
||||
|
Binary file not shown.
@ -63,7 +63,8 @@ class ActivityMonitor extends this.OS.application.BaseApplication
|
||||
$.each d , (j, a) =>
|
||||
if @gdata.processes[a.pid] #update it
|
||||
@gdata.processes[a.pid][3].text = now - a.birth
|
||||
@gdata.processes[a.pid][3].domel.update()
|
||||
# @gdata.processes[a.pid][3].domel.update()
|
||||
@grid.update()
|
||||
else #add it
|
||||
@gdata.processes[a.pid] = [
|
||||
{ text: a.pid },
|
||||
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"pkgname": "ActivityMonitor",
|
||||
"app":"ActivityMonitor",
|
||||
"name":"Activity monitor",
|
||||
"description":"Processes monitor and manager",
|
||||
@ -6,7 +7,7 @@
|
||||
"author": "Xuan Sang LE",
|
||||
"email": "xsang.le@gmail.com"
|
||||
},
|
||||
"version":"0.0.6-a",
|
||||
"version":"0.0.7-b",
|
||||
"category":"System",
|
||||
"iconclass":"fa fa-heartbeat",
|
||||
"mimes":["none"]
|
||||
|
@ -1,7 +0,0 @@
|
||||
{
|
||||
"name": "ActivityMonitor",
|
||||
"css": ["main.css"],
|
||||
"javascripts": [],
|
||||
"coffees": ["main.coffee"],
|
||||
"copies": ["scheme.html", "package.json", "README.md"]
|
||||
}
|
@ -6,6 +6,7 @@ The editor functionality can be extended by its extension mechanism.
|
||||
Extension can be developed/released/isntalled by the editor itself.
|
||||
|
||||
### Change logs
|
||||
- 0.1.16-b: use the new version of monaco editor
|
||||
- 0.1.14-b: improve output log display
|
||||
- 0.1.13-b: Allow file upload in file view, add menu context in tabbar
|
||||
- 0.1.12-b: fix recent files not adding correctly
|
||||
|
@ -6,6 +6,7 @@ The editor functionality can be extended by its extension mechanism.
|
||||
Extension can be developed/released/isntalled by the editor itself.
|
||||
|
||||
### Change logs
|
||||
- 0.1.16-b: use the new version of monaco editor
|
||||
- 0.1.14-b: improve output log display
|
||||
- 0.1.13-b: Allow file upload in file view, add menu context in tabbar
|
||||
- 0.1.12-b: fix recent files not adding correctly
|
||||
|
File diff suppressed because one or more lines are too long
@ -7,7 +7,7 @@
|
||||
"author": "Xuan Sang LE",
|
||||
"email": "mrsang@iohub.dev"
|
||||
},
|
||||
"version": "0.1.14-b",
|
||||
"version": "0.1.16-b",
|
||||
"category": "Development",
|
||||
"iconclass": "bi bi-journal-code",
|
||||
"mimes": [
|
||||
@ -18,7 +18,7 @@
|
||||
"dir"
|
||||
],
|
||||
"dependencies": [
|
||||
"MonacoCore@0.23.0-r"
|
||||
"MonacoCore@0.33.0-r"
|
||||
],
|
||||
"locale": {
|
||||
"en_GB": {
|
||||
|
Binary file not shown.
@ -7,7 +7,7 @@
|
||||
"author": "Xuan Sang LE",
|
||||
"email": "mrsang@iohub.dev"
|
||||
},
|
||||
"version": "0.1.14-b",
|
||||
"version": "0.1.16-b",
|
||||
"category": "Development",
|
||||
"iconclass": "bi bi-journal-code",
|
||||
"mimes": [
|
||||
@ -18,7 +18,7 @@
|
||||
"dir"
|
||||
],
|
||||
"dependencies": [
|
||||
"MonacoCore@0.23.0-r"
|
||||
"MonacoCore@0.33.0-r"
|
||||
],
|
||||
"locale": {
|
||||
"en_GB": {
|
||||
|
@ -239,7 +239,7 @@ namespace OS {
|
||||
*/
|
||||
getEditorStatus(): GenericObject<any> {
|
||||
const pos = this.editor.getPosition();
|
||||
const mode = MonacoEditorModel.modes[this.editor.getModel().getModeId()];
|
||||
const mode = MonacoEditorModel.modes[this.editor.getModel().getLanguageId()];
|
||||
return {
|
||||
row: pos.lineNumber,
|
||||
column: pos.column,
|
||||
|
@ -455,7 +455,11 @@ namespace OS {
|
||||
this.bindKey("ALT-W", () => this.menuAction("saveas"));
|
||||
|
||||
this.fileview.ondragndrop = (e) => {
|
||||
const src = e.data.from.data.path.asFileHandle();
|
||||
if(!e.data.from || !e.data.to)
|
||||
{
|
||||
return;
|
||||
}
|
||||
const src = e.data.from[0].data.path.asFileHandle();
|
||||
const des = e.data.to.data.path;
|
||||
return src
|
||||
.move(`${des}/${src.basename}`)
|
||||
@ -465,12 +469,12 @@ namespace OS {
|
||||
if (p1.length < p2.length) {
|
||||
e.data.to.update(p1);
|
||||
(e.data
|
||||
.from as GUI.tag.TreeViewTag).parent.update(
|
||||
.from[0] as GUI.tag.TreeViewTag).parent.update(
|
||||
p2
|
||||
);
|
||||
} else {
|
||||
(e.data
|
||||
.from as GUI.tag.TreeViewTag).parent.update(
|
||||
.from[0] as GUI.tag.TreeViewTag).parent.update(
|
||||
p2
|
||||
);
|
||||
e.data.to.update(p1);
|
||||
|
@ -1,4 +1,3 @@
|
||||
|
||||
afx-app-window[data-id ='Booklet'] div.editor-toolbar{
|
||||
background-color: white;
|
||||
}
|
||||
|
File diff suppressed because one or more lines are too long
@ -1,4 +1,5 @@
|
||||
{
|
||||
"pkgname":"Booklet",
|
||||
"app":"Booklet",
|
||||
"name":"Booklet",
|
||||
"description":"",
|
||||
@ -6,7 +7,7 @@
|
||||
"author": "Xuan Sang LE",
|
||||
"email": "mrsang@lxsang.me"
|
||||
},
|
||||
"version":"0.2.3-a",
|
||||
"version":"0.2.4-a",
|
||||
"category":"Office",
|
||||
"iconclass":"bi bi-journals",
|
||||
"dependencies": ["SimpleMDE@1.11.2-r","Katex@0.11.1-r"],
|
||||
|
Binary file not shown.
@ -95,7 +95,7 @@ class Booklet extends this.OS.application.BaseApplication
|
||||
|
||||
dndhandle: (e) ->
|
||||
return unless e and e.data
|
||||
from = e.data.from.data
|
||||
from = e.data.from[0].data
|
||||
to = e.data.to.data
|
||||
return unless from and to
|
||||
return if from.type is "Book" or from.type is "Chapter"
|
||||
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"pkgname":"Booklet",
|
||||
"app":"Booklet",
|
||||
"name":"Booklet",
|
||||
"description":"",
|
||||
@ -6,7 +7,7 @@
|
||||
"author": "Xuan Sang LE",
|
||||
"email": "mrsang@lxsang.me"
|
||||
},
|
||||
"version":"0.2.3-a",
|
||||
"version":"0.2.4-a",
|
||||
"category":"Office",
|
||||
"iconclass":"bi bi-journals",
|
||||
"dependencies": ["SimpleMDE@1.11.2-r","Katex@0.11.1-r"],
|
||||
|
@ -1,11 +0,0 @@
|
||||
{
|
||||
"name": "Booklet",
|
||||
"css": ["css/main.css"],
|
||||
"javascripts": [],
|
||||
"coffees": ["coffees/main.coffee", "coffees/common.coffee"],
|
||||
"copies": [
|
||||
"assets/scheme.html",
|
||||
"package.json",
|
||||
"README.md"
|
||||
]
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
# MonacoCore
|
||||
The Monaco Editor is the code editor which powers VS Code.
|
||||
|
||||
This library is the AntOS package wrapper of the Monaco editor 0.23.0
|
||||
This library is the AntOS package wrapper of the Monaco editor 0.33.0
|
||||
|
||||
For more information on the editor: [https://microsoft.github.io/monaco-editor/](https://microsoft.github.io/monaco-editor/)
|
@ -30,13 +30,17 @@
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_apex_apex_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_azcli_azcli_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_bat_bat_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_bicep_bicep_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_cameligo_cameligo_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_coffee_coffee_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_cpp_cpp_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_csharp_csharp_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_csp_csp_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_css_css_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_dart_dart_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_dockerfile_dockerfile_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_ecl_ecl_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_flow9_flow9_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_fsharp_fsharp_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_go_go_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_graphql_graphql_js.bundle.js",
|
||||
@ -44,9 +48,11 @@
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_html_html_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_ini_ini_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_java_java_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_javascript_javascript_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_kotlin_kotlin_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_less_less_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_lexon_lexon_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_liquid_liquid_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_lua_lua_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_m3_m3_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_markdown_markdown_js.bundle.js",
|
||||
@ -55,28 +61,34 @@
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_objective-c_objective-c_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_pascaligo_pascaligo_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_pascal_pascal_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_pla_pla_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_powershell_powershell_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_pug_pug_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_python_python_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_qsharp_qsharp_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_redis_redis_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_restructuredtext_restructuredtext_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_r_r_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_rust_rust_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_sb_sb_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_scheme_scheme_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_scss_scss_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_shell_shell_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_sophia_sophia_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_sparql_sparql_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_swift_swift_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_tcl_tcl_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_twig_twig_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_typescript_typescript_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_vb_vb_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_xml_xml_js.bundle.js",
|
||||
"build/debug/bundle/node_modules_monaco-editor_esm_vs_basic-languages_yaml_yaml_js.bundle.js",
|
||||
"build/debug/bundle/ts.worker.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_abap_abap_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_clojure_clojure_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_cpp_cpp_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_ecl_ecl_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_elixir_elixir_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_freemarker2_freemarker2_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_handlebars_handlebars_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_javascript_javascript_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_julia_julia_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_mysql_mysql_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_perl_perl_js.bundle.js",
|
||||
@ -84,22 +96,20 @@
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_php_php_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_postiats_postiats_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_powerquery_powerquery_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_pug_pug_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_protobuf_protobuf_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_razor_razor_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_redshift_redshift_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_ruby_ruby_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_scala_scala_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_scss_scss_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_solidity_solidity_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_sql_sql_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_st_st_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_systemverilog_systemverilog_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_twig_twig_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_basic-languages_vb_vb_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_language_css_cssMode_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_language_html_htmlMode_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_language_json_jsonMode_js.bundle.js",
|
||||
"build/debug/bundle/vendors-node_modules_monaco-editor_esm_vs_language_typescript_tsMode_js.bundle.js"
|
||||
|
||||
]
|
||||
}
|
||||
]
|
||||
|
@ -1,6 +1,6 @@
|
||||
# MonacoCore
|
||||
The Monaco Editor is the code editor which powers VS Code.
|
||||
|
||||
This library is the AntOS package wrapper of the Monaco editor 0.23.0
|
||||
This library is the AntOS package wrapper of the Monaco editor 0.33.0
|
||||
|
||||
For more information on the editor: [https://microsoft.github.io/monaco-editor/](https://microsoft.github.io/monaco-editor/)
|
1
MonacoCore/build/debug/bundle/7f1fe748ff21cfea4168.ttf
Normal file
1
MonacoCore/build/debug/bundle/7f1fe748ff21cfea4168.ttf
Normal file
@ -0,0 +1 @@
|
||||
export default __webpack_public_path__ + "ade705761eb7e702770dcaa0d4ac972f.ttf";
|
Binary file not shown.
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
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,22 +1,4 @@
|
||||
/*
|
||||
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
||||
* This devtool is neither made for production nor for readable output files.
|
||||
* It uses "eval()" calls to create a separate source file in the browser devtools.
|
||||
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
||||
* or disable the default devtool with "devtool: false".
|
||||
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
||||
*/
|
||||
(self["webpackChunkbrowser_esm_webpack"] = self["webpackChunkbrowser_esm_webpack"] || []).push([["node_modules_monaco-editor_esm_vs_basic-languages_azcli_azcli_js"],{
|
||||
|
||||
/***/ "./node_modules/monaco-editor/esm/vs/basic-languages/azcli/azcli.js":
|
||||
"use strict";(self.webpackChunkmonanco_wpack=self.webpackChunkmonanco_wpack||[]).push([["node_modules_monaco-editor_esm_vs_basic-languages_azcli_azcli_js"],{"./node_modules/monaco-editor/esm/vs/basic-languages/azcli/azcli.js":
|
||||
/*!**************************************************************************!*\
|
||||
!*** ./node_modules/monaco-editor/esm/vs/basic-languages/azcli/azcli.js ***!
|
||||
\**************************************************************************/
|
||||
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
||||
|
||||
"use strict";
|
||||
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"conf\": () => (/* binding */ conf),\n/* harmony export */ \"language\": () => (/* binding */ language)\n/* harmony export */ });\n/*---------------------------------------------------------------------------------------------\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License. See License.txt in the project root for license information.\r\n *--------------------------------------------------------------------------------------------*/\r\nvar conf = {\r\n comments: {\r\n lineComment: '#'\r\n }\r\n};\r\nvar language = {\r\n defaultToken: 'keyword',\r\n ignoreCase: true,\r\n tokenPostfix: '.azcli',\r\n str: /[^#\\s]/,\r\n tokenizer: {\r\n root: [\r\n { include: '@comment' },\r\n [\r\n /\\s-+@str*\\s*/,\r\n {\r\n cases: {\r\n '@eos': { token: 'key.identifier', next: '@popall' },\r\n '@default': { token: 'key.identifier', next: '@type' }\r\n }\r\n }\r\n ],\r\n [\r\n /^-+@str*\\s*/,\r\n {\r\n cases: {\r\n '@eos': { token: 'key.identifier', next: '@popall' },\r\n '@default': { token: 'key.identifier', next: '@type' }\r\n }\r\n }\r\n ]\r\n ],\r\n type: [\r\n { include: '@comment' },\r\n [\r\n /-+@str*\\s*/,\r\n {\r\n cases: {\r\n '@eos': { token: 'key.identifier', next: '@popall' },\r\n '@default': 'key.identifier'\r\n }\r\n }\r\n ],\r\n [\r\n /@str+\\s*/,\r\n {\r\n cases: {\r\n '@eos': { token: 'string', next: '@popall' },\r\n '@default': 'string'\r\n }\r\n }\r\n ]\r\n ],\r\n comment: [\r\n [\r\n /#.*$/,\r\n {\r\n cases: {\r\n '@eos': { token: 'comment', next: '@popall' }\r\n }\r\n }\r\n ]\r\n ]\r\n }\r\n};\r\n\n\n//# sourceURL=webpack://browser-esm-webpack/./node_modules/monaco-editor/esm/vs/basic-languages/azcli/azcli.js?");
|
||||
|
||||
/***/ })
|
||||
|
||||
}]);
|
||||
\**************************************************************************/(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "conf": () => (/* binding */ conf),\n/* harmony export */ "language": () => (/* binding */ language)\n/* harmony export */ });\n/*!-----------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Version: 0.33.0(4b1abad427e58dbedc1215d99a0902ffc885fcd4)\n * Released under the MIT license\n * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt\n *-----------------------------------------------------------------------------*/\n\n// src/basic-languages/azcli/azcli.ts\nvar conf = {\n comments: {\n lineComment: "#"\n }\n};\nvar language = {\n defaultToken: "keyword",\n ignoreCase: true,\n tokenPostfix: ".azcli",\n str: /[^#\\s]/,\n tokenizer: {\n root: [\n { include: "@comment" },\n [\n /\\s-+@str*\\s*/,\n {\n cases: {\n "@eos": { token: "key.identifier", next: "@popall" },\n "@default": { token: "key.identifier", next: "@type" }\n }\n }\n ],\n [\n /^-+@str*\\s*/,\n {\n cases: {\n "@eos": { token: "key.identifier", next: "@popall" },\n "@default": { token: "key.identifier", next: "@type" }\n }\n }\n ]\n ],\n type: [\n { include: "@comment" },\n [\n /-+@str*\\s*/,\n {\n cases: {\n "@eos": { token: "key.identifier", next: "@popall" },\n "@default": "key.identifier"\n }\n }\n ],\n [\n /@str+\\s*/,\n {\n cases: {\n "@eos": { token: "string", next: "@popall" },\n "@default": "string"\n }\n }\n ]\n ],\n comment: [\n [\n /#.*$/,\n {\n cases: {\n "@eos": { token: "comment", next: "@popall" }\n }\n }\n ]\n ]\n }\n};\n\n\n\n//# sourceURL=webpack://monanco_wpack/./node_modules/monaco-editor/esm/vs/basic-languages/azcli/azcli.js?')}}]);
|
@ -1,22 +1,4 @@
|
||||
/*
|
||||
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
||||
* This devtool is neither made for production nor for readable output files.
|
||||
* It uses "eval()" calls to create a separate source file in the browser devtools.
|
||||
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
||||
* or disable the default devtool with "devtool: false".
|
||||
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
||||
*/
|
||||
(self["webpackChunkbrowser_esm_webpack"] = self["webpackChunkbrowser_esm_webpack"] || []).push([["node_modules_monaco-editor_esm_vs_basic-languages_bat_bat_js"],{
|
||||
|
||||
/***/ "./node_modules/monaco-editor/esm/vs/basic-languages/bat/bat.js":
|
||||
"use strict";(self.webpackChunkmonanco_wpack=self.webpackChunkmonanco_wpack||[]).push([["node_modules_monaco-editor_esm_vs_basic-languages_bat_bat_js"],{"./node_modules/monaco-editor/esm/vs/basic-languages/bat/bat.js":
|
||||
/*!**********************************************************************!*\
|
||||
!*** ./node_modules/monaco-editor/esm/vs/basic-languages/bat/bat.js ***!
|
||||
\**********************************************************************/
|
||||
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
||||
|
||||
"use strict";
|
||||
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"conf\": () => (/* binding */ conf),\n/* harmony export */ \"language\": () => (/* binding */ language)\n/* harmony export */ });\n/*---------------------------------------------------------------------------------------------\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License. See License.txt in the project root for license information.\r\n *--------------------------------------------------------------------------------------------*/\r\nvar conf = {\r\n comments: {\r\n lineComment: 'REM'\r\n },\r\n brackets: [\r\n ['{', '}'],\r\n ['[', ']'],\r\n ['(', ')']\r\n ],\r\n autoClosingPairs: [\r\n { open: '{', close: '}' },\r\n { open: '[', close: ']' },\r\n { open: '(', close: ')' },\r\n { open: '\"', close: '\"' }\r\n ],\r\n surroundingPairs: [\r\n { open: '[', close: ']' },\r\n { open: '(', close: ')' },\r\n { open: '\"', close: '\"' }\r\n ],\r\n folding: {\r\n markers: {\r\n start: new RegExp('^\\\\s*(::\\\\s*|REM\\\\s+)#region'),\r\n end: new RegExp('^\\\\s*(::\\\\s*|REM\\\\s+)#endregion')\r\n }\r\n }\r\n};\r\nvar language = {\r\n defaultToken: '',\r\n ignoreCase: true,\r\n tokenPostfix: '.bat',\r\n brackets: [\r\n { token: 'delimiter.bracket', open: '{', close: '}' },\r\n { token: 'delimiter.parenthesis', open: '(', close: ')' },\r\n { token: 'delimiter.square', open: '[', close: ']' }\r\n ],\r\n keywords: /call|defined|echo|errorlevel|exist|for|goto|if|pause|set|shift|start|title|not|pushd|popd/,\r\n // we include these common regular expressions\r\n symbols: /[=><!~?&|+\\-*\\/\\^;\\.,]+/,\r\n escapes: /\\\\(?:[abfnrtv\\\\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,\r\n // The main tokenizer for our languages\r\n tokenizer: {\r\n root: [\r\n [/^(\\s*)(rem(?:\\s.*|))$/, ['', 'comment']],\r\n [/(\\@?)(@keywords)(?!\\w)/, [{ token: 'keyword' }, { token: 'keyword.$2' }]],\r\n // whitespace\r\n [/[ \\t\\r\\n]+/, ''],\r\n // blocks\r\n [/setlocal(?!\\w)/, 'keyword.tag-setlocal'],\r\n [/endlocal(?!\\w)/, 'keyword.tag-setlocal'],\r\n // words\r\n [/[a-zA-Z_]\\w*/, ''],\r\n // labels\r\n [/:\\w*/, 'metatag'],\r\n // variables\r\n [/%[^%]+%/, 'variable'],\r\n [/%%[\\w]+(?!\\w)/, 'variable'],\r\n // punctuations\r\n [/[{}()\\[\\]]/, '@brackets'],\r\n [/@symbols/, 'delimiter'],\r\n // numbers\r\n [/\\d*\\.\\d+([eE][\\-+]?\\d+)?/, 'number.float'],\r\n [/0[xX][0-9a-fA-F_]*[0-9a-fA-F]/, 'number.hex'],\r\n [/\\d+/, 'number'],\r\n // punctuation: after number because of .\\d floats\r\n [/[;,.]/, 'delimiter'],\r\n // strings:\r\n [/\"/, 'string', '@string.\"'],\r\n [/'/, 'string', \"@string.'\"]\r\n ],\r\n string: [\r\n [\r\n /[^\\\\\"'%]+/,\r\n {\r\n cases: {\r\n '@eos': { token: 'string', next: '@popall' },\r\n '@default': 'string'\r\n }\r\n }\r\n ],\r\n [/@escapes/, 'string.escape'],\r\n [/\\\\./, 'string.escape.invalid'],\r\n [/%[\\w ]+%/, 'variable'],\r\n [/%%[\\w]+(?!\\w)/, 'variable'],\r\n [\r\n /[\"']/,\r\n {\r\n cases: {\r\n '$#==$S2': { token: 'string', next: '@pop' },\r\n '@default': 'string'\r\n }\r\n }\r\n ],\r\n [/$/, 'string', '@popall']\r\n ]\r\n }\r\n};\r\n\n\n//# sourceURL=webpack://browser-esm-webpack/./node_modules/monaco-editor/esm/vs/basic-languages/bat/bat.js?");
|
||||
|
||||
/***/ })
|
||||
|
||||
}]);
|
||||
\**********************************************************************/(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "conf": () => (/* binding */ conf),\n/* harmony export */ "language": () => (/* binding */ language)\n/* harmony export */ });\n/*!-----------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Version: 0.33.0(4b1abad427e58dbedc1215d99a0902ffc885fcd4)\n * Released under the MIT license\n * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt\n *-----------------------------------------------------------------------------*/\n\n// src/basic-languages/bat/bat.ts\nvar conf = {\n comments: {\n lineComment: "REM"\n },\n brackets: [\n ["{", "}"],\n ["[", "]"],\n ["(", ")"]\n ],\n autoClosingPairs: [\n { open: "{", close: "}" },\n { open: "[", close: "]" },\n { open: "(", close: ")" },\n { open: \'"\', close: \'"\' }\n ],\n surroundingPairs: [\n { open: "[", close: "]" },\n { open: "(", close: ")" },\n { open: \'"\', close: \'"\' }\n ],\n folding: {\n markers: {\n start: new RegExp("^\\\\s*(::\\\\s*|REM\\\\s+)#region"),\n end: new RegExp("^\\\\s*(::\\\\s*|REM\\\\s+)#endregion")\n }\n }\n};\nvar language = {\n defaultToken: "",\n ignoreCase: true,\n tokenPostfix: ".bat",\n brackets: [\n { token: "delimiter.bracket", open: "{", close: "}" },\n { token: "delimiter.parenthesis", open: "(", close: ")" },\n { token: "delimiter.square", open: "[", close: "]" }\n ],\n keywords: /call|defined|echo|errorlevel|exist|for|goto|if|pause|set|shift|start|title|not|pushd|popd/,\n symbols: /[=><!~?&|+\\-*\\/\\^;\\.,]+/,\n escapes: /\\\\(?:[abfnrtv\\\\"\']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,\n tokenizer: {\n root: [\n [/^(\\s*)(rem(?:\\s.*|))$/, ["", "comment"]],\n [/(\\@?)(@keywords)(?!\\w)/, [{ token: "keyword" }, { token: "keyword.$2" }]],\n [/[ \\t\\r\\n]+/, ""],\n [/setlocal(?!\\w)/, "keyword.tag-setlocal"],\n [/endlocal(?!\\w)/, "keyword.tag-setlocal"],\n [/[a-zA-Z_]\\w*/, ""],\n [/:\\w*/, "metatag"],\n [/%[^%]+%/, "variable"],\n [/%%[\\w]+(?!\\w)/, "variable"],\n [/[{}()\\[\\]]/, "@brackets"],\n [/@symbols/, "delimiter"],\n [/\\d*\\.\\d+([eE][\\-+]?\\d+)?/, "number.float"],\n [/0[xX][0-9a-fA-F_]*[0-9a-fA-F]/, "number.hex"],\n [/\\d+/, "number"],\n [/[;,.]/, "delimiter"],\n [/"/, "string", \'@string."\'],\n [/\'/, "string", "@string.\'"]\n ],\n string: [\n [\n /[^\\\\"\'%]+/,\n {\n cases: {\n "@eos": { token: "string", next: "@popall" },\n "@default": "string"\n }\n }\n ],\n [/@escapes/, "string.escape"],\n [/\\\\./, "string.escape.invalid"],\n [/%[\\w ]+%/, "variable"],\n [/%%[\\w]+(?!\\w)/, "variable"],\n [\n /["\']/,\n {\n cases: {\n "$#==$S2": { token: "string", next: "@pop" },\n "@default": "string"\n }\n }\n ],\n [/$/, "string", "@popall"]\n ]\n }\n};\n\n\n\n//# sourceURL=webpack://monanco_wpack/./node_modules/monaco-editor/esm/vs/basic-languages/bat/bat.js?')}}]);
|
@ -0,0 +1,4 @@
|
||||
"use strict";(self.webpackChunkmonanco_wpack=self.webpackChunkmonanco_wpack||[]).push([["node_modules_monaco-editor_esm_vs_basic-languages_bicep_bicep_js"],{"./node_modules/monaco-editor/esm/vs/basic-languages/bicep/bicep.js":
|
||||
/*!**************************************************************************!*\
|
||||
!*** ./node_modules/monaco-editor/esm/vs/basic-languages/bicep/bicep.js ***!
|
||||
\**************************************************************************/(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "conf": () => (/* binding */ conf),\n/* harmony export */ "language": () => (/* binding */ language)\n/* harmony export */ });\n/*!-----------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Version: 0.33.0(4b1abad427e58dbedc1215d99a0902ffc885fcd4)\n * Released under the MIT license\n * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt\n *-----------------------------------------------------------------------------*/\n\n// src/basic-languages/bicep/bicep.ts\nvar bounded = (text) => `\\\\b${text}\\\\b`;\nvar identifierStart = "[_a-zA-Z]";\nvar identifierContinue = "[_a-zA-Z0-9]";\nvar identifier = bounded(`${identifierStart}${identifierContinue}*`);\nvar keywords = [\n "targetScope",\n "resource",\n "module",\n "param",\n "var",\n "output",\n "for",\n "in",\n "if",\n "existing"\n];\nvar namedLiterals = ["true", "false", "null"];\nvar nonCommentWs = `[ \\\\t\\\\r\\\\n]`;\nvar numericLiteral = `[0-9]+`;\nvar conf = {\n comments: {\n lineComment: "//",\n blockComment: ["/*", "*/"]\n },\n brackets: [\n ["{", "}"],\n ["[", "]"],\n ["(", ")"]\n ],\n surroundingPairs: [\n { open: "{", close: "}" },\n { open: "[", close: "]" },\n { open: "(", close: ")" },\n { open: "\'", close: "\'" },\n { open: "\'\'\'", close: "\'\'\'" }\n ],\n autoClosingPairs: [\n { open: "{", close: "}" },\n { open: "[", close: "]" },\n { open: "(", close: ")" },\n { open: "\'", close: "\'", notIn: ["string", "comment"] },\n { open: "\'\'\'", close: "\'\'\'", notIn: ["string", "comment"] }\n ],\n autoCloseBefore: ":.,=}])\' \\n\t",\n indentationRules: {\n increaseIndentPattern: new RegExp("^((?!\\\\/\\\\/).)*(\\\\{[^}\\"\'`]*|\\\\([^)\\"\'`]*|\\\\[[^\\\\]\\"\'`]*)$"),\n decreaseIndentPattern: new RegExp("^((?!.*?\\\\/\\\\*).*\\\\*/)?\\\\s*[\\\\}\\\\]].*$")\n }\n};\nvar language = {\n defaultToken: "",\n tokenPostfix: ".bicep",\n brackets: [\n { open: "{", close: "}", token: "delimiter.curly" },\n { open: "[", close: "]", token: "delimiter.square" },\n { open: "(", close: ")", token: "delimiter.parenthesis" }\n ],\n symbols: /[=><!~?:&|+\\-*/^%]+/,\n keywords,\n namedLiterals,\n escapes: `\\\\\\\\(u{[0-9A-Fa-f]+}|n|r|t|\\\\\\\\|\'|\\\\\\${)`,\n tokenizer: {\n root: [{ include: "@expression" }, { include: "@whitespace" }],\n stringVerbatim: [\n { regex: `(|\'|\'\')[^\']`, action: { token: "string" } },\n { regex: `\'\'\'`, action: { token: "string.quote", next: "@pop" } }\n ],\n stringLiteral: [\n { regex: `\\\\\\${`, action: { token: "delimiter.bracket", next: "@bracketCounting" } },\n { regex: `[^\\\\\\\\\'$]+`, action: { token: "string" } },\n { regex: "@escapes", action: { token: "string.escape" } },\n { regex: `\\\\\\\\.`, action: { token: "string.escape.invalid" } },\n { regex: `\'`, action: { token: "string", next: "@pop" } }\n ],\n bracketCounting: [\n { regex: `{`, action: { token: "delimiter.bracket", next: "@bracketCounting" } },\n { regex: `}`, action: { token: "delimiter.bracket", next: "@pop" } },\n { include: "expression" }\n ],\n comment: [\n { regex: `[^\\\\*]+`, action: { token: "comment" } },\n { regex: `\\\\*\\\\/`, action: { token: "comment", next: "@pop" } },\n { regex: `[\\\\/*]`, action: { token: "comment" } }\n ],\n whitespace: [\n { regex: nonCommentWs },\n { regex: `\\\\/\\\\*`, action: { token: "comment", next: "@comment" } },\n { regex: `\\\\/\\\\/.*$`, action: { token: "comment" } }\n ],\n expression: [\n { regex: `\'\'\'`, action: { token: "string.quote", next: "@stringVerbatim" } },\n { regex: `\'`, action: { token: "string.quote", next: "@stringLiteral" } },\n { regex: numericLiteral, action: { token: "number" } },\n {\n regex: identifier,\n action: {\n cases: {\n "@keywords": { token: "keyword" },\n "@namedLiterals": { token: "keyword" },\n "@default": { token: "identifier" }\n }\n }\n }\n ]\n }\n};\n\n\n\n//# sourceURL=webpack://monanco_wpack/./node_modules/monaco-editor/esm/vs/basic-languages/bicep/bicep.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,22 +1,4 @@
|
||||
/*
|
||||
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
||||
* This devtool is neither made for production nor for readable output files.
|
||||
* It uses "eval()" calls to create a separate source file in the browser devtools.
|
||||
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
||||
* or disable the default devtool with "devtool: false".
|
||||
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
||||
*/
|
||||
(self["webpackChunkbrowser_esm_webpack"] = self["webpackChunkbrowser_esm_webpack"] || []).push([["node_modules_monaco-editor_esm_vs_basic-languages_csp_csp_js"],{
|
||||
|
||||
/***/ "./node_modules/monaco-editor/esm/vs/basic-languages/csp/csp.js":
|
||||
"use strict";(self.webpackChunkmonanco_wpack=self.webpackChunkmonanco_wpack||[]).push([["node_modules_monaco-editor_esm_vs_basic-languages_csp_csp_js"],{"./node_modules/monaco-editor/esm/vs/basic-languages/csp/csp.js":
|
||||
/*!**********************************************************************!*\
|
||||
!*** ./node_modules/monaco-editor/esm/vs/basic-languages/csp/csp.js ***!
|
||||
\**********************************************************************/
|
||||
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
||||
|
||||
"use strict";
|
||||
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"conf\": () => (/* binding */ conf),\n/* harmony export */ \"language\": () => (/* binding */ language)\n/* harmony export */ });\n/*---------------------------------------------------------------------------------------------\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License. See License.txt in the project root for license information.\r\n *--------------------------------------------------------------------------------------------*/\r\nvar conf = {\r\n brackets: [],\r\n autoClosingPairs: [],\r\n surroundingPairs: []\r\n};\r\nvar language = {\r\n // Set defaultToken to invalid to see what you do not tokenize yet\r\n // defaultToken: 'invalid',\r\n keywords: [],\r\n typeKeywords: [],\r\n tokenPostfix: '.csp',\r\n operators: [],\r\n symbols: /[=><!~?:&|+\\-*\\/\\^%]+/,\r\n escapes: /\\\\(?:[abfnrtv\\\\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,\r\n tokenizer: {\r\n root: [\r\n [/child-src/, 'string.quote'],\r\n [/connect-src/, 'string.quote'],\r\n [/default-src/, 'string.quote'],\r\n [/font-src/, 'string.quote'],\r\n [/frame-src/, 'string.quote'],\r\n [/img-src/, 'string.quote'],\r\n [/manifest-src/, 'string.quote'],\r\n [/media-src/, 'string.quote'],\r\n [/object-src/, 'string.quote'],\r\n [/script-src/, 'string.quote'],\r\n [/style-src/, 'string.quote'],\r\n [/worker-src/, 'string.quote'],\r\n [/base-uri/, 'string.quote'],\r\n [/plugin-types/, 'string.quote'],\r\n [/sandbox/, 'string.quote'],\r\n [/disown-opener/, 'string.quote'],\r\n [/form-action/, 'string.quote'],\r\n [/frame-ancestors/, 'string.quote'],\r\n [/report-uri/, 'string.quote'],\r\n [/report-to/, 'string.quote'],\r\n [/upgrade-insecure-requests/, 'string.quote'],\r\n [/block-all-mixed-content/, 'string.quote'],\r\n [/require-sri-for/, 'string.quote'],\r\n [/reflected-xss/, 'string.quote'],\r\n [/referrer/, 'string.quote'],\r\n [/policy-uri/, 'string.quote'],\r\n [/'self'/, 'string.quote'],\r\n [/'unsafe-inline'/, 'string.quote'],\r\n [/'unsafe-eval'/, 'string.quote'],\r\n [/'strict-dynamic'/, 'string.quote'],\r\n [/'unsafe-hashed-attributes'/, 'string.quote']\r\n ]\r\n }\r\n};\r\n\n\n//# sourceURL=webpack://browser-esm-webpack/./node_modules/monaco-editor/esm/vs/basic-languages/csp/csp.js?");
|
||||
|
||||
/***/ })
|
||||
|
||||
}]);
|
||||
\**********************************************************************/(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "conf": () => (/* binding */ conf),\n/* harmony export */ "language": () => (/* binding */ language)\n/* harmony export */ });\n/*!-----------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Version: 0.33.0(4b1abad427e58dbedc1215d99a0902ffc885fcd4)\n * Released under the MIT license\n * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt\n *-----------------------------------------------------------------------------*/\n\n// src/basic-languages/csp/csp.ts\nvar conf = {\n brackets: [],\n autoClosingPairs: [],\n surroundingPairs: []\n};\nvar language = {\n keywords: [],\n typeKeywords: [],\n tokenPostfix: ".csp",\n operators: [],\n symbols: /[=><!~?:&|+\\-*\\/\\^%]+/,\n escapes: /\\\\(?:[abfnrtv\\\\"\']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,\n tokenizer: {\n root: [\n [/child-src/, "string.quote"],\n [/connect-src/, "string.quote"],\n [/default-src/, "string.quote"],\n [/font-src/, "string.quote"],\n [/frame-src/, "string.quote"],\n [/img-src/, "string.quote"],\n [/manifest-src/, "string.quote"],\n [/media-src/, "string.quote"],\n [/object-src/, "string.quote"],\n [/script-src/, "string.quote"],\n [/style-src/, "string.quote"],\n [/worker-src/, "string.quote"],\n [/base-uri/, "string.quote"],\n [/plugin-types/, "string.quote"],\n [/sandbox/, "string.quote"],\n [/disown-opener/, "string.quote"],\n [/form-action/, "string.quote"],\n [/frame-ancestors/, "string.quote"],\n [/report-uri/, "string.quote"],\n [/report-to/, "string.quote"],\n [/upgrade-insecure-requests/, "string.quote"],\n [/block-all-mixed-content/, "string.quote"],\n [/require-sri-for/, "string.quote"],\n [/reflected-xss/, "string.quote"],\n [/referrer/, "string.quote"],\n [/policy-uri/, "string.quote"],\n [/\'self\'/, "string.quote"],\n [/\'unsafe-inline\'/, "string.quote"],\n [/\'unsafe-eval\'/, "string.quote"],\n [/\'strict-dynamic\'/, "string.quote"],\n [/\'unsafe-hashed-attributes\'/, "string.quote"]\n ]\n }\n};\n\n\n\n//# sourceURL=webpack://monanco_wpack/./node_modules/monaco-editor/esm/vs/basic-languages/csp/csp.js?')}}]);
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,22 +1,4 @@
|
||||
/*
|
||||
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
||||
* This devtool is neither made for production nor for readable output files.
|
||||
* It uses "eval()" calls to create a separate source file in the browser devtools.
|
||||
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
||||
* or disable the default devtool with "devtool: false".
|
||||
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
||||
*/
|
||||
(self["webpackChunkbrowser_esm_webpack"] = self["webpackChunkbrowser_esm_webpack"] || []).push([["node_modules_monaco-editor_esm_vs_basic-languages_dockerfile_dockerfile_js"],{
|
||||
|
||||
/***/ "./node_modules/monaco-editor/esm/vs/basic-languages/dockerfile/dockerfile.js":
|
||||
"use strict";(self.webpackChunkmonanco_wpack=self.webpackChunkmonanco_wpack||[]).push([["node_modules_monaco-editor_esm_vs_basic-languages_dockerfile_dockerfile_js"],{"./node_modules/monaco-editor/esm/vs/basic-languages/dockerfile/dockerfile.js":
|
||||
/*!************************************************************************************!*\
|
||||
!*** ./node_modules/monaco-editor/esm/vs/basic-languages/dockerfile/dockerfile.js ***!
|
||||
\************************************************************************************/
|
||||
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
||||
|
||||
"use strict";
|
||||
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"conf\": () => (/* binding */ conf),\n/* harmony export */ \"language\": () => (/* binding */ language)\n/* harmony export */ });\n/*---------------------------------------------------------------------------------------------\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License. See License.txt in the project root for license information.\r\n *--------------------------------------------------------------------------------------------*/\r\nvar conf = {\r\n brackets: [\r\n ['{', '}'],\r\n ['[', ']'],\r\n ['(', ')']\r\n ],\r\n autoClosingPairs: [\r\n { open: '{', close: '}' },\r\n { open: '[', close: ']' },\r\n { open: '(', close: ')' },\r\n { open: '\"', close: '\"' },\r\n { open: \"'\", close: \"'\" }\r\n ],\r\n surroundingPairs: [\r\n { open: '{', close: '}' },\r\n { open: '[', close: ']' },\r\n { open: '(', close: ')' },\r\n { open: '\"', close: '\"' },\r\n { open: \"'\", close: \"'\" }\r\n ]\r\n};\r\nvar language = {\r\n defaultToken: '',\r\n tokenPostfix: '.dockerfile',\r\n variable: /\\${?[\\w]+}?/,\r\n tokenizer: {\r\n root: [\r\n { include: '@whitespace' },\r\n { include: '@comment' },\r\n [/(ONBUILD)(\\s+)/, ['keyword', '']],\r\n [/(ENV)(\\s+)([\\w]+)/, ['keyword', '', { token: 'variable', next: '@arguments' }]],\r\n [\r\n /(FROM|MAINTAINER|RUN|EXPOSE|ENV|ADD|ARG|VOLUME|LABEL|USER|WORKDIR|COPY|CMD|STOPSIGNAL|SHELL|HEALTHCHECK|ENTRYPOINT)/,\r\n { token: 'keyword', next: '@arguments' }\r\n ]\r\n ],\r\n arguments: [\r\n { include: '@whitespace' },\r\n { include: '@strings' },\r\n [\r\n /(@variable)/,\r\n {\r\n cases: {\r\n '@eos': { token: 'variable', next: '@popall' },\r\n '@default': 'variable'\r\n }\r\n }\r\n ],\r\n [\r\n /\\\\/,\r\n {\r\n cases: {\r\n '@eos': '',\r\n '@default': ''\r\n }\r\n }\r\n ],\r\n [\r\n /./,\r\n {\r\n cases: {\r\n '@eos': { token: '', next: '@popall' },\r\n '@default': ''\r\n }\r\n }\r\n ]\r\n ],\r\n // Deal with white space, including comments\r\n whitespace: [\r\n [\r\n /\\s+/,\r\n {\r\n cases: {\r\n '@eos': { token: '', next: '@popall' },\r\n '@default': ''\r\n }\r\n }\r\n ]\r\n ],\r\n comment: [[/(^#.*$)/, 'comment', '@popall']],\r\n // Recognize strings, including those broken across lines with \\ (but not without)\r\n strings: [\r\n [/\\\\'$/, '', '@popall'],\r\n [/\\\\'/, ''],\r\n [/'$/, 'string', '@popall'],\r\n [/'/, 'string', '@stringBody'],\r\n [/\"$/, 'string', '@popall'],\r\n [/\"/, 'string', '@dblStringBody']\r\n ],\r\n stringBody: [\r\n [\r\n /[^\\\\\\$']/,\r\n {\r\n cases: {\r\n '@eos': { token: 'string', next: '@popall' },\r\n '@default': 'string'\r\n }\r\n }\r\n ],\r\n [/\\\\./, 'string.escape'],\r\n [/'$/, 'string', '@popall'],\r\n [/'/, 'string', '@pop'],\r\n [/(@variable)/, 'variable'],\r\n [/\\\\$/, 'string'],\r\n [/$/, 'string', '@popall']\r\n ],\r\n dblStringBody: [\r\n [\r\n /[^\\\\\\$\"]/,\r\n {\r\n cases: {\r\n '@eos': { token: 'string', next: '@popall' },\r\n '@default': 'string'\r\n }\r\n }\r\n ],\r\n [/\\\\./, 'string.escape'],\r\n [/\"$/, 'string', '@popall'],\r\n [/\"/, 'string', '@pop'],\r\n [/(@variable)/, 'variable'],\r\n [/\\\\$/, 'string'],\r\n [/$/, 'string', '@popall']\r\n ]\r\n }\r\n};\r\n\n\n//# sourceURL=webpack://browser-esm-webpack/./node_modules/monaco-editor/esm/vs/basic-languages/dockerfile/dockerfile.js?");
|
||||
|
||||
/***/ })
|
||||
|
||||
}]);
|
||||
\************************************************************************************/(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "conf": () => (/* binding */ conf),\n/* harmony export */ "language": () => (/* binding */ language)\n/* harmony export */ });\n/*!-----------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Version: 0.33.0(4b1abad427e58dbedc1215d99a0902ffc885fcd4)\n * Released under the MIT license\n * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt\n *-----------------------------------------------------------------------------*/\n\n// src/basic-languages/dockerfile/dockerfile.ts\nvar conf = {\n brackets: [\n ["{", "}"],\n ["[", "]"],\n ["(", ")"]\n ],\n autoClosingPairs: [\n { open: "{", close: "}" },\n { open: "[", close: "]" },\n { open: "(", close: ")" },\n { open: \'"\', close: \'"\' },\n { open: "\'", close: "\'" }\n ],\n surroundingPairs: [\n { open: "{", close: "}" },\n { open: "[", close: "]" },\n { open: "(", close: ")" },\n { open: \'"\', close: \'"\' },\n { open: "\'", close: "\'" }\n ]\n};\nvar language = {\n defaultToken: "",\n tokenPostfix: ".dockerfile",\n variable: /\\${?[\\w]+}?/,\n tokenizer: {\n root: [\n { include: "@whitespace" },\n { include: "@comment" },\n [/(ONBUILD)(\\s+)/, ["keyword", ""]],\n [/(ENV)(\\s+)([\\w]+)/, ["keyword", "", { token: "variable", next: "@arguments" }]],\n [\n /(FROM|MAINTAINER|RUN|EXPOSE|ENV|ADD|ARG|VOLUME|LABEL|USER|WORKDIR|COPY|CMD|STOPSIGNAL|SHELL|HEALTHCHECK|ENTRYPOINT)/,\n { token: "keyword", next: "@arguments" }\n ]\n ],\n arguments: [\n { include: "@whitespace" },\n { include: "@strings" },\n [\n /(@variable)/,\n {\n cases: {\n "@eos": { token: "variable", next: "@popall" },\n "@default": "variable"\n }\n }\n ],\n [\n /\\\\/,\n {\n cases: {\n "@eos": "",\n "@default": ""\n }\n }\n ],\n [\n /./,\n {\n cases: {\n "@eos": { token: "", next: "@popall" },\n "@default": ""\n }\n }\n ]\n ],\n whitespace: [\n [\n /\\s+/,\n {\n cases: {\n "@eos": { token: "", next: "@popall" },\n "@default": ""\n }\n }\n ]\n ],\n comment: [[/(^#.*$)/, "comment", "@popall"]],\n strings: [\n [/\\\\\'$/, "", "@popall"],\n [/\\\\\'/, ""],\n [/\'$/, "string", "@popall"],\n [/\'/, "string", "@stringBody"],\n [/"$/, "string", "@popall"],\n [/"/, "string", "@dblStringBody"]\n ],\n stringBody: [\n [\n /[^\\\\\\$\']/,\n {\n cases: {\n "@eos": { token: "string", next: "@popall" },\n "@default": "string"\n }\n }\n ],\n [/\\\\./, "string.escape"],\n [/\'$/, "string", "@popall"],\n [/\'/, "string", "@pop"],\n [/(@variable)/, "variable"],\n [/\\\\$/, "string"],\n [/$/, "string", "@popall"]\n ],\n dblStringBody: [\n [\n /[^\\\\\\$"]/,\n {\n cases: {\n "@eos": { token: "string", next: "@popall" },\n "@default": "string"\n }\n }\n ],\n [/\\\\./, "string.escape"],\n [/"$/, "string", "@popall"],\n [/"/, "string", "@pop"],\n [/(@variable)/, "variable"],\n [/\\\\$/, "string"],\n [/$/, "string", "@popall"]\n ]\n }\n};\n\n\n\n//# sourceURL=webpack://monanco_wpack/./node_modules/monaco-editor/esm/vs/basic-languages/dockerfile/dockerfile.js?')}}]);
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,4 @@
|
||||
"use strict";(self.webpackChunkmonanco_wpack=self.webpackChunkmonanco_wpack||[]).push([["node_modules_monaco-editor_esm_vs_basic-languages_flow9_flow9_js"],{"./node_modules/monaco-editor/esm/vs/basic-languages/flow9/flow9.js":
|
||||
/*!**************************************************************************!*\
|
||||
!*** ./node_modules/monaco-editor/esm/vs/basic-languages/flow9/flow9.js ***!
|
||||
\**************************************************************************/(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "conf": () => (/* binding */ conf),\n/* harmony export */ "language": () => (/* binding */ language)\n/* harmony export */ });\n/*!-----------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Version: 0.33.0(4b1abad427e58dbedc1215d99a0902ffc885fcd4)\n * Released under the MIT license\n * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt\n *-----------------------------------------------------------------------------*/\n\n// src/basic-languages/flow9/flow9.ts\nvar conf = {\n comments: {\n blockComment: ["/*", "*/"],\n lineComment: "//"\n },\n brackets: [\n ["{", "}"],\n ["[", "]"],\n ["(", ")"]\n ],\n autoClosingPairs: [\n { open: "{", close: "}", notIn: ["string"] },\n { open: "[", close: "]", notIn: ["string"] },\n { open: "(", close: ")", notIn: ["string"] },\n { open: \'"\', close: \'"\', notIn: ["string"] },\n { open: "\'", close: "\'", notIn: ["string"] }\n ],\n surroundingPairs: [\n { open: "{", close: "}" },\n { open: "[", close: "]" },\n { open: "(", close: ")" },\n { open: \'"\', close: \'"\' },\n { open: "\'", close: "\'" },\n { open: "<", close: ">" }\n ]\n};\nvar language = {\n defaultToken: "",\n tokenPostfix: ".flow",\n keywords: [\n "import",\n "require",\n "export",\n "forbid",\n "native",\n "if",\n "else",\n "cast",\n "unsafe",\n "switch",\n "default"\n ],\n types: [\n "io",\n "mutable",\n "bool",\n "int",\n "double",\n "string",\n "flow",\n "void",\n "ref",\n "true",\n "false",\n "with"\n ],\n operators: [\n "=",\n ">",\n "<",\n "<=",\n ">=",\n "==",\n "!",\n "!=",\n ":=",\n "::=",\n "&&",\n "||",\n "+",\n "-",\n "*",\n "/",\n "@",\n "&",\n "%",\n ":",\n "->",\n "\\\\",\n "$",\n "??",\n "^"\n ],\n symbols: /[@$=><!~?:&|+\\-*\\\\\\/\\^%]+/,\n escapes: /\\\\(?:[abfnrtv\\\\"\']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,\n tokenizer: {\n root: [\n [\n /[a-zA-Z_]\\w*/,\n {\n cases: {\n "@keywords": "keyword",\n "@types": "type",\n "@default": "identifier"\n }\n }\n ],\n { include: "@whitespace" },\n [/[{}()\\[\\]]/, "delimiter"],\n [/[<>](?!@symbols)/, "delimiter"],\n [\n /@symbols/,\n {\n cases: {\n "@operators": "delimiter",\n "@default": ""\n }\n }\n ],\n [/((0(x|X)[0-9a-fA-F]*)|(([0-9]+\\.?[0-9]*)|(\\.[0-9]+))((e|E)(\\+|-)?[0-9]+)?)/, "number"],\n [/[;,.]/, "delimiter"],\n [/"([^"\\\\]|\\\\.)*$/, "string.invalid"],\n [/"/, "string", "@string"]\n ],\n whitespace: [\n [/[ \\t\\r\\n]+/, ""],\n [/\\/\\*/, "comment", "@comment"],\n [/\\/\\/.*$/, "comment"]\n ],\n comment: [\n [/[^\\/*]+/, "comment"],\n [/\\*\\//, "comment", "@pop"],\n [/[\\/*]/, "comment"]\n ],\n string: [\n [/[^\\\\"]+/, "string"],\n [/@escapes/, "string.escape"],\n [/\\\\./, "string.escape.invalid"],\n [/"/, "string", "@pop"]\n ]\n }\n};\n\n\n\n//# sourceURL=webpack://monanco_wpack/./node_modules/monaco-editor/esm/vs/basic-languages/flow9/flow9.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
File diff suppressed because one or more lines are too long
@ -1,22 +1,4 @@
|
||||
/*
|
||||
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
||||
* This devtool is neither made for production nor for readable output files.
|
||||
* It uses "eval()" calls to create a separate source file in the browser devtools.
|
||||
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
||||
* or disable the default devtool with "devtool: false".
|
||||
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
||||
*/
|
||||
(self["webpackChunkbrowser_esm_webpack"] = self["webpackChunkbrowser_esm_webpack"] || []).push([["node_modules_monaco-editor_esm_vs_basic-languages_ini_ini_js"],{
|
||||
|
||||
/***/ "./node_modules/monaco-editor/esm/vs/basic-languages/ini/ini.js":
|
||||
"use strict";(self.webpackChunkmonanco_wpack=self.webpackChunkmonanco_wpack||[]).push([["node_modules_monaco-editor_esm_vs_basic-languages_ini_ini_js"],{"./node_modules/monaco-editor/esm/vs/basic-languages/ini/ini.js":
|
||||
/*!**********************************************************************!*\
|
||||
!*** ./node_modules/monaco-editor/esm/vs/basic-languages/ini/ini.js ***!
|
||||
\**********************************************************************/
|
||||
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
||||
|
||||
"use strict";
|
||||
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"conf\": () => (/* binding */ conf),\n/* harmony export */ \"language\": () => (/* binding */ language)\n/* harmony export */ });\n/*---------------------------------------------------------------------------------------------\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License. See License.txt in the project root for license information.\r\n *--------------------------------------------------------------------------------------------*/\r\nvar conf = {\r\n comments: {\r\n lineComment: '#'\r\n },\r\n brackets: [\r\n ['{', '}'],\r\n ['[', ']'],\r\n ['(', ')']\r\n ],\r\n autoClosingPairs: [\r\n { open: '{', close: '}' },\r\n { open: '[', close: ']' },\r\n { open: '(', close: ')' },\r\n { open: '\"', close: '\"' },\r\n { open: \"'\", close: \"'\" }\r\n ],\r\n surroundingPairs: [\r\n { open: '{', close: '}' },\r\n { open: '[', close: ']' },\r\n { open: '(', close: ')' },\r\n { open: '\"', close: '\"' },\r\n { open: \"'\", close: \"'\" }\r\n ]\r\n};\r\nvar language = {\r\n defaultToken: '',\r\n tokenPostfix: '.ini',\r\n // we include these common regular expressions\r\n escapes: /\\\\(?:[abfnrtv\\\\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,\r\n // The main tokenizer for our languages\r\n tokenizer: {\r\n root: [\r\n // sections\r\n [/^\\[[^\\]]*\\]/, 'metatag'],\r\n // keys\r\n [/(^\\w+)(\\s*)(\\=)/, ['key', '', 'delimiter']],\r\n // whitespace\r\n { include: '@whitespace' },\r\n // numbers\r\n [/\\d+/, 'number'],\r\n // strings: recover on non-terminated strings\r\n [/\"([^\"\\\\]|\\\\.)*$/, 'string.invalid'],\r\n [/'([^'\\\\]|\\\\.)*$/, 'string.invalid'],\r\n [/\"/, 'string', '@string.\"'],\r\n [/'/, 'string', \"@string.'\"]\r\n ],\r\n whitespace: [\r\n [/[ \\t\\r\\n]+/, ''],\r\n [/^\\s*[#;].*$/, 'comment']\r\n ],\r\n string: [\r\n [/[^\\\\\"']+/, 'string'],\r\n [/@escapes/, 'string.escape'],\r\n [/\\\\./, 'string.escape.invalid'],\r\n [\r\n /[\"']/,\r\n {\r\n cases: {\r\n '$#==$S2': { token: 'string', next: '@pop' },\r\n '@default': 'string'\r\n }\r\n }\r\n ]\r\n ]\r\n }\r\n};\r\n\n\n//# sourceURL=webpack://browser-esm-webpack/./node_modules/monaco-editor/esm/vs/basic-languages/ini/ini.js?");
|
||||
|
||||
/***/ })
|
||||
|
||||
}]);
|
||||
\**********************************************************************/(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "conf": () => (/* binding */ conf),\n/* harmony export */ "language": () => (/* binding */ language)\n/* harmony export */ });\n/*!-----------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Version: 0.33.0(4b1abad427e58dbedc1215d99a0902ffc885fcd4)\n * Released under the MIT license\n * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt\n *-----------------------------------------------------------------------------*/\n\n// src/basic-languages/ini/ini.ts\nvar conf = {\n comments: {\n lineComment: "#"\n },\n brackets: [\n ["{", "}"],\n ["[", "]"],\n ["(", ")"]\n ],\n autoClosingPairs: [\n { open: "{", close: "}" },\n { open: "[", close: "]" },\n { open: "(", close: ")" },\n { open: \'"\', close: \'"\' },\n { open: "\'", close: "\'" }\n ],\n surroundingPairs: [\n { open: "{", close: "}" },\n { open: "[", close: "]" },\n { open: "(", close: ")" },\n { open: \'"\', close: \'"\' },\n { open: "\'", close: "\'" }\n ]\n};\nvar language = {\n defaultToken: "",\n tokenPostfix: ".ini",\n escapes: /\\\\(?:[abfnrtv\\\\"\']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,\n tokenizer: {\n root: [\n [/^\\[[^\\]]*\\]/, "metatag"],\n [/(^\\w+)(\\s*)(\\=)/, ["key", "", "delimiter"]],\n { include: "@whitespace" },\n [/\\d+/, "number"],\n [/"([^"\\\\]|\\\\.)*$/, "string.invalid"],\n [/\'([^\'\\\\]|\\\\.)*$/, "string.invalid"],\n [/"/, "string", \'@string."\'],\n [/\'/, "string", "@string.\'"]\n ],\n whitespace: [\n [/[ \\t\\r\\n]+/, ""],\n [/^\\s*[#;].*$/, "comment"]\n ],\n string: [\n [/[^\\\\"\']+/, "string"],\n [/@escapes/, "string.escape"],\n [/\\\\./, "string.escape.invalid"],\n [\n /["\']/,\n {\n cases: {\n "$#==$S2": { token: "string", next: "@pop" },\n "@default": "string"\n }\n }\n ]\n ]\n }\n};\n\n\n\n//# sourceURL=webpack://monanco_wpack/./node_modules/monaco-editor/esm/vs/basic-languages/ini/ini.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
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
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
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,4 @@
|
||||
"use strict";(self.webpackChunkmonanco_wpack=self.webpackChunkmonanco_wpack||[]).push([["node_modules_monaco-editor_esm_vs_basic-languages_pla_pla_js"],{"./node_modules/monaco-editor/esm/vs/basic-languages/pla/pla.js":
|
||||
/*!**********************************************************************!*\
|
||||
!*** ./node_modules/monaco-editor/esm/vs/basic-languages/pla/pla.js ***!
|
||||
\**********************************************************************/(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "conf": () => (/* binding */ conf),\n/* harmony export */ "language": () => (/* binding */ language)\n/* harmony export */ });\n/*!-----------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Version: 0.33.0(4b1abad427e58dbedc1215d99a0902ffc885fcd4)\n * Released under the MIT license\n * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt\n *-----------------------------------------------------------------------------*/\n\n// src/basic-languages/pla/pla.ts\nvar conf = {\n comments: {\n lineComment: "#"\n },\n brackets: [\n ["[", "]"],\n ["<", ">"],\n ["(", ")"]\n ],\n autoClosingPairs: [\n { open: "[", close: "]" },\n { open: "<", close: ">" },\n { open: "(", close: ")" }\n ],\n surroundingPairs: [\n { open: "[", close: "]" },\n { open: "<", close: ">" },\n { open: "(", close: ")" }\n ]\n};\nvar language = {\n defaultToken: "",\n tokenPostfix: ".pla",\n brackets: [\n { open: "[", close: "]", token: "delimiter.square" },\n { open: "<", close: ">", token: "delimiter.angle" },\n { open: "(", close: ")", token: "delimiter.parenthesis" }\n ],\n keywords: [\n ".i",\n ".o",\n ".mv",\n ".ilb",\n ".ob",\n ".label",\n ".type",\n ".phase",\n ".pair",\n ".symbolic",\n ".symbolic-output",\n ".kiss",\n ".p",\n ".e",\n ".end"\n ],\n comment: /#.*$/,\n identifier: /[a-zA-Z]+[a-zA-Z0-9_\\-]*/,\n plaContent: /[01\\-~\\|]+/,\n tokenizer: {\n root: [\n { include: "@whitespace" },\n [/@comment/, "comment"],\n [\n /\\.([a-zA-Z_\\-]+)/,\n {\n cases: {\n "@eos": { token: "keyword.$1" },\n "@keywords": {\n cases: {\n ".type": { token: "keyword.$1", next: "@type" },\n "@default": { token: "keyword.$1", next: "@keywordArg" }\n }\n },\n "@default": { token: "keyword.$1" }\n }\n }\n ],\n [/@identifier/, "identifier"],\n [/@plaContent/, "string"]\n ],\n whitespace: [[/[ \\t\\r\\n]+/, ""]],\n type: [{ include: "@whitespace" }, [/\\w+/, { token: "type", next: "@pop" }]],\n keywordArg: [\n [\n /[ \\t\\r\\n]+/,\n {\n cases: {\n "@eos": { token: "", next: "@pop" },\n "@default": ""\n }\n }\n ],\n [/@comment/, "comment", "@pop"],\n [\n /[<>()\\[\\]]/,\n {\n cases: {\n "@eos": { token: "@brackets", next: "@pop" },\n "@default": "@brackets"\n }\n }\n ],\n [\n /\\-?\\d+/,\n {\n cases: {\n "@eos": { token: "number", next: "@pop" },\n "@default": "number"\n }\n }\n ],\n [\n /@identifier/,\n {\n cases: {\n "@eos": { token: "identifier", next: "@pop" },\n "@default": "identifier"\n }\n }\n ],\n [\n /[;=]/,\n {\n cases: {\n "@eos": { token: "delimiter", next: "@pop" },\n "@default": "delimiter"\n }\n }\n ]\n ]\n }\n};\n\n\n\n//# sourceURL=webpack://monanco_wpack/./node_modules/monaco-editor/esm/vs/basic-languages/pla/pla.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
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,22 +1,4 @@
|
||||
/*
|
||||
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
||||
* This devtool is neither made for production nor for readable output files.
|
||||
* It uses "eval()" calls to create a separate source file in the browser devtools.
|
||||
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
||||
* or disable the default devtool with "devtool: false".
|
||||
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
||||
*/
|
||||
(self["webpackChunkbrowser_esm_webpack"] = self["webpackChunkbrowser_esm_webpack"] || []).push([["node_modules_monaco-editor_esm_vs_basic-languages_sb_sb_js"],{
|
||||
|
||||
/***/ "./node_modules/monaco-editor/esm/vs/basic-languages/sb/sb.js":
|
||||
"use strict";(self.webpackChunkmonanco_wpack=self.webpackChunkmonanco_wpack||[]).push([["node_modules_monaco-editor_esm_vs_basic-languages_sb_sb_js"],{"./node_modules/monaco-editor/esm/vs/basic-languages/sb/sb.js":
|
||||
/*!********************************************************************!*\
|
||||
!*** ./node_modules/monaco-editor/esm/vs/basic-languages/sb/sb.js ***!
|
||||
\********************************************************************/
|
||||
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
||||
|
||||
"use strict";
|
||||
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"conf\": () => (/* binding */ conf),\n/* harmony export */ \"language\": () => (/* binding */ language)\n/* harmony export */ });\n/*---------------------------------------------------------------------------------------------\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License. See License.txt in the project root for license information.\r\n *--------------------------------------------------------------------------------------------*/\r\nvar conf = {\r\n comments: {\r\n lineComment: \"'\"\r\n },\r\n brackets: [\r\n ['(', ')'],\r\n ['[', ']'],\r\n ['If', 'EndIf'],\r\n ['While', 'EndWhile'],\r\n ['For', 'EndFor'],\r\n ['Sub', 'EndSub']\r\n ],\r\n autoClosingPairs: [\r\n { open: '\"', close: '\"', notIn: ['string', 'comment'] },\r\n { open: '(', close: ')', notIn: ['string', 'comment'] },\r\n { open: '[', close: ']', notIn: ['string', 'comment'] }\r\n ]\r\n};\r\nvar language = {\r\n defaultToken: '',\r\n tokenPostfix: '.sb',\r\n ignoreCase: true,\r\n brackets: [\r\n { token: 'delimiter.array', open: '[', close: ']' },\r\n { token: 'delimiter.parenthesis', open: '(', close: ')' },\r\n // Special bracket statement pairs\r\n { token: 'keyword.tag-if', open: 'If', close: 'EndIf' },\r\n { token: 'keyword.tag-while', open: 'While', close: 'EndWhile' },\r\n { token: 'keyword.tag-for', open: 'For', close: 'EndFor' },\r\n { token: 'keyword.tag-sub', open: 'Sub', close: 'EndSub' }\r\n ],\r\n keywords: [\r\n 'Else',\r\n 'ElseIf',\r\n 'EndFor',\r\n 'EndIf',\r\n 'EndSub',\r\n 'EndWhile',\r\n 'For',\r\n 'Goto',\r\n 'If',\r\n 'Step',\r\n 'Sub',\r\n 'Then',\r\n 'To',\r\n 'While'\r\n ],\r\n tagwords: ['If', 'Sub', 'While', 'For'],\r\n operators: ['>', '<', '<>', '<=', '>=', 'And', 'Or', '+', '-', '*', '/', '='],\r\n // we include these common regular expressions\r\n identifier: /[a-zA-Z_][\\w]*/,\r\n symbols: /[=><:+\\-*\\/%\\.,]+/,\r\n escapes: /\\\\(?:[abfnrtv\\\\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,\r\n // The main tokenizer for our languages\r\n tokenizer: {\r\n root: [\r\n // whitespace\r\n { include: '@whitespace' },\r\n // classes\r\n [/(@identifier)(?=[.])/, 'type'],\r\n // identifiers, tagwords, and keywords\r\n [\r\n /@identifier/,\r\n {\r\n cases: {\r\n '@keywords': { token: 'keyword.$0' },\r\n '@operators': 'operator',\r\n '@default': 'variable.name'\r\n }\r\n }\r\n ],\r\n // methods, properties, and events\r\n [\r\n /([.])(@identifier)/,\r\n {\r\n cases: {\r\n $2: ['delimiter', 'type.member'],\r\n '@default': ''\r\n }\r\n }\r\n ],\r\n // numbers\r\n [/\\d*\\.\\d+/, 'number.float'],\r\n [/\\d+/, 'number'],\r\n // delimiters and operators\r\n [/[()\\[\\]]/, '@brackets'],\r\n [\r\n /@symbols/,\r\n {\r\n cases: {\r\n '@operators': 'operator',\r\n '@default': 'delimiter'\r\n }\r\n }\r\n ],\r\n // strings\r\n [/\"([^\"\\\\]|\\\\.)*$/, 'string.invalid'],\r\n [/\"/, 'string', '@string']\r\n ],\r\n whitespace: [\r\n [/[ \\t\\r\\n]+/, ''],\r\n [/(\\').*$/, 'comment']\r\n ],\r\n string: [\r\n [/[^\\\\\"]+/, 'string'],\r\n [/@escapes/, 'string.escape'],\r\n [/\\\\./, 'string.escape.invalid'],\r\n [/\"C?/, 'string', '@pop']\r\n ]\r\n }\r\n};\r\n\n\n//# sourceURL=webpack://browser-esm-webpack/./node_modules/monaco-editor/esm/vs/basic-languages/sb/sb.js?");
|
||||
|
||||
/***/ })
|
||||
|
||||
}]);
|
||||
\********************************************************************/(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "conf": () => (/* binding */ conf),\n/* harmony export */ "language": () => (/* binding */ language)\n/* harmony export */ });\n/*!-----------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Version: 0.33.0(4b1abad427e58dbedc1215d99a0902ffc885fcd4)\n * Released under the MIT license\n * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt\n *-----------------------------------------------------------------------------*/\n\n// src/basic-languages/sb/sb.ts\nvar conf = {\n comments: {\n lineComment: "\'"\n },\n brackets: [\n ["(", ")"],\n ["[", "]"],\n ["If", "EndIf"],\n ["While", "EndWhile"],\n ["For", "EndFor"],\n ["Sub", "EndSub"]\n ],\n autoClosingPairs: [\n { open: \'"\', close: \'"\', notIn: ["string", "comment"] },\n { open: "(", close: ")", notIn: ["string", "comment"] },\n { open: "[", close: "]", notIn: ["string", "comment"] }\n ]\n};\nvar language = {\n defaultToken: "",\n tokenPostfix: ".sb",\n ignoreCase: true,\n brackets: [\n { token: "delimiter.array", open: "[", close: "]" },\n { token: "delimiter.parenthesis", open: "(", close: ")" },\n { token: "keyword.tag-if", open: "If", close: "EndIf" },\n { token: "keyword.tag-while", open: "While", close: "EndWhile" },\n { token: "keyword.tag-for", open: "For", close: "EndFor" },\n { token: "keyword.tag-sub", open: "Sub", close: "EndSub" }\n ],\n keywords: [\n "Else",\n "ElseIf",\n "EndFor",\n "EndIf",\n "EndSub",\n "EndWhile",\n "For",\n "Goto",\n "If",\n "Step",\n "Sub",\n "Then",\n "To",\n "While"\n ],\n tagwords: ["If", "Sub", "While", "For"],\n operators: [">", "<", "<>", "<=", ">=", "And", "Or", "+", "-", "*", "/", "="],\n identifier: /[a-zA-Z_][\\w]*/,\n symbols: /[=><:+\\-*\\/%\\.,]+/,\n escapes: /\\\\(?:[abfnrtv\\\\"\']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,\n tokenizer: {\n root: [\n { include: "@whitespace" },\n [/(@identifier)(?=[.])/, "type"],\n [\n /@identifier/,\n {\n cases: {\n "@keywords": { token: "keyword.$0" },\n "@operators": "operator",\n "@default": "variable.name"\n }\n }\n ],\n [\n /([.])(@identifier)/,\n {\n cases: {\n $2: ["delimiter", "type.member"],\n "@default": ""\n }\n }\n ],\n [/\\d*\\.\\d+/, "number.float"],\n [/\\d+/, "number"],\n [/[()\\[\\]]/, "@brackets"],\n [\n /@symbols/,\n {\n cases: {\n "@operators": "operator",\n "@default": "delimiter"\n }\n }\n ],\n [/"([^"\\\\]|\\\\.)*$/, "string.invalid"],\n [/"/, "string", "@string"]\n ],\n whitespace: [\n [/[ \\t\\r\\n]+/, ""],\n [/(\\\').*$/, "comment"]\n ],\n string: [\n [/[^\\\\"]+/, "string"],\n [/@escapes/, "string.escape"],\n [/\\\\./, "string.escape.invalid"],\n [/"C?/, "string", "@pop"]\n ]\n }\n};\n\n\n\n//# sourceURL=webpack://monanco_wpack/./node_modules/monaco-editor/esm/vs/basic-languages/sb/sb.js?')}}]);
|
@ -1,22 +1,4 @@
|
||||
/*
|
||||
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
||||
* This devtool is neither made for production nor for readable output files.
|
||||
* It uses "eval()" calls to create a separate source file in the browser devtools.
|
||||
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
||||
* or disable the default devtool with "devtool: false".
|
||||
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
||||
*/
|
||||
(self["webpackChunkbrowser_esm_webpack"] = self["webpackChunkbrowser_esm_webpack"] || []).push([["node_modules_monaco-editor_esm_vs_basic-languages_scheme_scheme_js"],{
|
||||
|
||||
/***/ "./node_modules/monaco-editor/esm/vs/basic-languages/scheme/scheme.js":
|
||||
"use strict";(self.webpackChunkmonanco_wpack=self.webpackChunkmonanco_wpack||[]).push([["node_modules_monaco-editor_esm_vs_basic-languages_scheme_scheme_js"],{"./node_modules/monaco-editor/esm/vs/basic-languages/scheme/scheme.js":
|
||||
/*!****************************************************************************!*\
|
||||
!*** ./node_modules/monaco-editor/esm/vs/basic-languages/scheme/scheme.js ***!
|
||||
\****************************************************************************/
|
||||
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
||||
|
||||
"use strict";
|
||||
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"conf\": () => (/* binding */ conf),\n/* harmony export */ \"language\": () => (/* binding */ language)\n/* harmony export */ });\n/*---------------------------------------------------------------------------------------------\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License. See License.txt in the project root for license information.\r\n *--------------------------------------------------------------------------------------------*/\r\nvar conf = {\r\n comments: {\r\n lineComment: ';',\r\n blockComment: ['#|', '|#']\r\n },\r\n brackets: [\r\n ['(', ')'],\r\n ['{', '}'],\r\n ['[', ']']\r\n ],\r\n autoClosingPairs: [\r\n { open: '{', close: '}' },\r\n { open: '[', close: ']' },\r\n { open: '(', close: ')' },\r\n { open: '\"', close: '\"' }\r\n ],\r\n surroundingPairs: [\r\n { open: '{', close: '}' },\r\n { open: '[', close: ']' },\r\n { open: '(', close: ')' },\r\n { open: '\"', close: '\"' }\r\n ]\r\n};\r\nvar language = {\r\n defaultToken: '',\r\n ignoreCase: true,\r\n tokenPostfix: '.scheme',\r\n brackets: [\r\n { open: '(', close: ')', token: 'delimiter.parenthesis' },\r\n { open: '{', close: '}', token: 'delimiter.curly' },\r\n { open: '[', close: ']', token: 'delimiter.square' }\r\n ],\r\n keywords: [\r\n 'case',\r\n 'do',\r\n 'let',\r\n 'loop',\r\n 'if',\r\n 'else',\r\n 'when',\r\n 'cons',\r\n 'car',\r\n 'cdr',\r\n 'cond',\r\n 'lambda',\r\n 'lambda*',\r\n 'syntax-rules',\r\n 'format',\r\n 'set!',\r\n 'quote',\r\n 'eval',\r\n 'append',\r\n 'list',\r\n 'list?',\r\n 'member?',\r\n 'load'\r\n ],\r\n constants: ['#t', '#f'],\r\n operators: ['eq?', 'eqv?', 'equal?', 'and', 'or', 'not', 'null?'],\r\n tokenizer: {\r\n root: [\r\n [/#[xXoObB][0-9a-fA-F]+/, 'number.hex'],\r\n [/[+-]?\\d+(?:(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)?/, 'number.float'],\r\n [\r\n /(?:\\b(?:(define|define-syntax|define-macro))\\b)(\\s+)((?:\\w|\\-|\\!|\\?)*)/,\r\n ['keyword', 'white', 'variable']\r\n ],\r\n { include: '@whitespace' },\r\n { include: '@strings' },\r\n [\r\n /[a-zA-Z_#][a-zA-Z0-9_\\-\\?\\!\\*]*/,\r\n {\r\n cases: {\r\n '@keywords': 'keyword',\r\n '@constants': 'constant',\r\n '@operators': 'operators',\r\n '@default': 'identifier'\r\n }\r\n }\r\n ]\r\n ],\r\n comment: [\r\n [/[^\\|#]+/, 'comment'],\r\n [/#\\|/, 'comment', '@push'],\r\n [/\\|#/, 'comment', '@pop'],\r\n [/[\\|#]/, 'comment']\r\n ],\r\n whitespace: [\r\n [/[ \\t\\r\\n]+/, 'white'],\r\n [/#\\|/, 'comment', '@comment'],\r\n [/;.*$/, 'comment']\r\n ],\r\n strings: [\r\n [/\"$/, 'string', '@popall'],\r\n [/\"(?=.)/, 'string', '@multiLineString']\r\n ],\r\n multiLineString: [\r\n [/[^\\\\\"]+$/, 'string', '@popall'],\r\n [/[^\\\\\"]+/, 'string'],\r\n [/\\\\./, 'string.escape'],\r\n [/\"/, 'string', '@popall'],\r\n [/\\\\$/, 'string']\r\n ]\r\n }\r\n};\r\n\n\n//# sourceURL=webpack://browser-esm-webpack/./node_modules/monaco-editor/esm/vs/basic-languages/scheme/scheme.js?");
|
||||
|
||||
/***/ })
|
||||
|
||||
}]);
|
||||
\****************************************************************************/(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "conf": () => (/* binding */ conf),\n/* harmony export */ "language": () => (/* binding */ language)\n/* harmony export */ });\n/*!-----------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Version: 0.33.0(4b1abad427e58dbedc1215d99a0902ffc885fcd4)\n * Released under the MIT license\n * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt\n *-----------------------------------------------------------------------------*/\n\n// src/basic-languages/scheme/scheme.ts\nvar conf = {\n comments: {\n lineComment: ";",\n blockComment: ["#|", "|#"]\n },\n brackets: [\n ["(", ")"],\n ["{", "}"],\n ["[", "]"]\n ],\n autoClosingPairs: [\n { open: "{", close: "}" },\n { open: "[", close: "]" },\n { open: "(", close: ")" },\n { open: \'"\', close: \'"\' }\n ],\n surroundingPairs: [\n { open: "{", close: "}" },\n { open: "[", close: "]" },\n { open: "(", close: ")" },\n { open: \'"\', close: \'"\' }\n ]\n};\nvar language = {\n defaultToken: "",\n ignoreCase: true,\n tokenPostfix: ".scheme",\n brackets: [\n { open: "(", close: ")", token: "delimiter.parenthesis" },\n { open: "{", close: "}", token: "delimiter.curly" },\n { open: "[", close: "]", token: "delimiter.square" }\n ],\n keywords: [\n "case",\n "do",\n "let",\n "loop",\n "if",\n "else",\n "when",\n "cons",\n "car",\n "cdr",\n "cond",\n "lambda",\n "lambda*",\n "syntax-rules",\n "format",\n "set!",\n "quote",\n "eval",\n "append",\n "list",\n "list?",\n "member?",\n "load"\n ],\n constants: ["#t", "#f"],\n operators: ["eq?", "eqv?", "equal?", "and", "or", "not", "null?"],\n tokenizer: {\n root: [\n [/#[xXoObB][0-9a-fA-F]+/, "number.hex"],\n [/[+-]?\\d+(?:(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)?/, "number.float"],\n [\n /(?:\\b(?:(define|define-syntax|define-macro))\\b)(\\s+)((?:\\w|\\-|\\!|\\?)*)/,\n ["keyword", "white", "variable"]\n ],\n { include: "@whitespace" },\n { include: "@strings" },\n [\n /[a-zA-Z_#][a-zA-Z0-9_\\-\\?\\!\\*]*/,\n {\n cases: {\n "@keywords": "keyword",\n "@constants": "constant",\n "@operators": "operators",\n "@default": "identifier"\n }\n }\n ]\n ],\n comment: [\n [/[^\\|#]+/, "comment"],\n [/#\\|/, "comment", "@push"],\n [/\\|#/, "comment", "@pop"],\n [/[\\|#]/, "comment"]\n ],\n whitespace: [\n [/[ \\t\\r\\n]+/, "white"],\n [/#\\|/, "comment", "@comment"],\n [/;.*$/, "comment"]\n ],\n strings: [\n [/"$/, "string", "@popall"],\n [/"(?=.)/, "string", "@multiLineString"]\n ],\n multiLineString: [\n [/[^\\\\"]+$/, "string", "@popall"],\n [/[^\\\\"]+/, "string"],\n [/\\\\./, "string.escape"],\n [/"/, "string", "@popall"],\n [/\\\\$/, "string"]\n ]\n }\n};\n\n\n\n//# sourceURL=webpack://monanco_wpack/./node_modules/monaco-editor/esm/vs/basic-languages/scheme/scheme.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
@ -0,0 +1,4 @@
|
||||
"use strict";(self.webpackChunkmonanco_wpack=self.webpackChunkmonanco_wpack||[]).push([["node_modules_monaco-editor_esm_vs_basic-languages_sparql_sparql_js"],{"./node_modules/monaco-editor/esm/vs/basic-languages/sparql/sparql.js":
|
||||
/*!****************************************************************************!*\
|
||||
!*** ./node_modules/monaco-editor/esm/vs/basic-languages/sparql/sparql.js ***!
|
||||
\****************************************************************************/(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "conf": () => (/* binding */ conf),\n/* harmony export */ "language": () => (/* binding */ language)\n/* harmony export */ });\n/*!-----------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Version: 0.33.0(4b1abad427e58dbedc1215d99a0902ffc885fcd4)\n * Released under the MIT license\n * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt\n *-----------------------------------------------------------------------------*/\n\n// src/basic-languages/sparql/sparql.ts\nvar conf = {\n comments: {\n lineComment: "#"\n },\n brackets: [\n ["{", "}"],\n ["[", "]"],\n ["(", ")"]\n ],\n autoClosingPairs: [\n { open: "\'", close: "\'", notIn: ["string"] },\n { open: \'"\', close: \'"\', notIn: ["string"] },\n { open: "{", close: "}" },\n { open: "[", close: "]" },\n { open: "(", close: ")" }\n ]\n};\nvar language = {\n defaultToken: "",\n tokenPostfix: ".rq",\n brackets: [\n { token: "delimiter.curly", open: "{", close: "}" },\n { token: "delimiter.parenthesis", open: "(", close: ")" },\n { token: "delimiter.square", open: "[", close: "]" },\n { token: "delimiter.angle", open: "<", close: ">" }\n ],\n keywords: [\n "add",\n "as",\n "asc",\n "ask",\n "base",\n "by",\n "clear",\n "construct",\n "copy",\n "create",\n "data",\n "delete",\n "desc",\n "describe",\n "distinct",\n "drop",\n "false",\n "filter",\n "from",\n "graph",\n "group",\n "having",\n "in",\n "insert",\n "limit",\n "load",\n "minus",\n "move",\n "named",\n "not",\n "offset",\n "optional",\n "order",\n "prefix",\n "reduced",\n "select",\n "service",\n "silent",\n "to",\n "true",\n "undef",\n "union",\n "using",\n "values",\n "where",\n "with"\n ],\n builtinFunctions: [\n "a",\n "abs",\n "avg",\n "bind",\n "bnode",\n "bound",\n "ceil",\n "coalesce",\n "concat",\n "contains",\n "count",\n "datatype",\n "day",\n "encode_for_uri",\n "exists",\n "floor",\n "group_concat",\n "hours",\n "if",\n "iri",\n "isblank",\n "isiri",\n "isliteral",\n "isnumeric",\n "isuri",\n "lang",\n "langmatches",\n "lcase",\n "max",\n "md5",\n "min",\n "minutes",\n "month",\n "now",\n "rand",\n "regex",\n "replace",\n "round",\n "sameterm",\n "sample",\n "seconds",\n "sha1",\n "sha256",\n "sha384",\n "sha512",\n "str",\n "strafter",\n "strbefore",\n "strdt",\n "strends",\n "strlang",\n "strlen",\n "strstarts",\n "struuid",\n "substr",\n "sum",\n "timezone",\n "tz",\n "ucase",\n "uri",\n "uuid",\n "year"\n ],\n ignoreCase: true,\n tokenizer: {\n root: [\n [/<[^\\s\\u00a0>]*>?/, "tag"],\n { include: "@strings" },\n [/#.*/, "comment"],\n [/[{}()\\[\\]]/, "@brackets"],\n [/[;,.]/, "delimiter"],\n [/[_\\w\\d]+:(\\.(?=[\\w_\\-\\\\%])|[:\\w_-]|\\\\[-\\\\_~.!$&\'()*+,;=/?#@%]|%[a-f\\d][a-f\\d])*/, "tag"],\n [/:(\\.(?=[\\w_\\-\\\\%])|[:\\w_-]|\\\\[-\\\\_~.!$&\'()*+,;=/?#@%]|%[a-f\\d][a-f\\d])+/, "tag"],\n [\n /[$?]?[_\\w\\d]+/,\n {\n cases: {\n "@keywords": { token: "keyword" },\n "@builtinFunctions": { token: "predefined.sql" },\n "@default": "identifier"\n }\n }\n ],\n [/\\^\\^/, "operator.sql"],\n [/\\^[*+\\-<>=&|^\\/!?]*/, "operator.sql"],\n [/[*+\\-<>=&|\\/!?]/, "operator.sql"],\n [/@[a-z\\d\\-]*/, "metatag.html"],\n [/\\s+/, "white"]\n ],\n strings: [\n [/\'([^\'\\\\]|\\\\.)*$/, "string.invalid"],\n [/\'$/, "string.sql", "@pop"],\n [/\'/, "string.sql", "@stringBody"],\n [/"([^"\\\\]|\\\\.)*$/, "string.invalid"],\n [/"$/, "string.sql", "@pop"],\n [/"/, "string.sql", "@dblStringBody"]\n ],\n stringBody: [\n [/[^\\\\\']+/, "string.sql"],\n [/\\\\./, "string.escape"],\n [/\'/, "string.sql", "@pop"]\n ],\n dblStringBody: [\n [/[^\\\\"]+/, "string.sql"],\n [/\\\\./, "string.escape"],\n [/"/, "string.sql", "@pop"]\n ]\n }\n};\n\n\n\n//# sourceURL=webpack://monanco_wpack/./node_modules/monaco-editor/esm/vs/basic-languages/sparql/sparql.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
File diff suppressed because one or more lines are too long
@ -1,22 +1,4 @@
|
||||
/*
|
||||
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
|
||||
* This devtool is neither made for production nor for readable output files.
|
||||
* It uses "eval()" calls to create a separate source file in the browser devtools.
|
||||
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
||||
* or disable the default devtool with "devtool: false".
|
||||
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
||||
*/
|
||||
(self["webpackChunkbrowser_esm_webpack"] = self["webpackChunkbrowser_esm_webpack"] || []).push([["node_modules_monaco-editor_esm_vs_basic-languages_xml_xml_js"],{
|
||||
|
||||
/***/ "./node_modules/monaco-editor/esm/vs/basic-languages/xml/xml.js":
|
||||
"use strict";(self.webpackChunkmonanco_wpack=self.webpackChunkmonanco_wpack||[]).push([["node_modules_monaco-editor_esm_vs_basic-languages_xml_xml_js"],{"./node_modules/monaco-editor/esm/vs/basic-languages/xml/xml.js":
|
||||
/*!**********************************************************************!*\
|
||||
!*** ./node_modules/monaco-editor/esm/vs/basic-languages/xml/xml.js ***!
|
||||
\**********************************************************************/
|
||||
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
||||
|
||||
"use strict";
|
||||
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"conf\": () => (/* binding */ conf),\n/* harmony export */ \"language\": () => (/* binding */ language)\n/* harmony export */ });\n/* harmony import */ var _fillers_monaco_editor_core_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../fillers/monaco-editor-core.js */ \"./node_modules/monaco-editor/esm/vs/basic-languages/fillers/monaco-editor-core.js\");\n/*---------------------------------------------------------------------------------------------\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License. See License.txt in the project root for license information.\r\n *--------------------------------------------------------------------------------------------*/\r\n\r\nvar conf = {\r\n comments: {\r\n blockComment: ['<!--', '-->']\r\n },\r\n brackets: [['<', '>']],\r\n autoClosingPairs: [\r\n { open: '<', close: '>' },\r\n { open: \"'\", close: \"'\" },\r\n { open: '\"', close: '\"' }\r\n ],\r\n surroundingPairs: [\r\n { open: '<', close: '>' },\r\n { open: \"'\", close: \"'\" },\r\n { open: '\"', close: '\"' }\r\n ],\r\n onEnterRules: [\r\n {\r\n beforeText: new RegExp(\"<([_:\\\\w][_:\\\\w-.\\\\d]*)([^/>]*(?!/)>)[^<]*$\", 'i'),\r\n afterText: /^<\\/([_:\\w][_:\\w-.\\d]*)\\s*>$/i,\r\n action: {\r\n indentAction: _fillers_monaco_editor_core_js__WEBPACK_IMPORTED_MODULE_0__.languages.IndentAction.IndentOutdent\r\n }\r\n },\r\n {\r\n beforeText: new RegExp(\"<(\\\\w[\\\\w\\\\d]*)([^/>]*(?!/)>)[^<]*$\", 'i'),\r\n action: { indentAction: _fillers_monaco_editor_core_js__WEBPACK_IMPORTED_MODULE_0__.languages.IndentAction.Indent }\r\n }\r\n ]\r\n};\r\nvar language = {\r\n defaultToken: '',\r\n tokenPostfix: '.xml',\r\n ignoreCase: true,\r\n // Useful regular expressions\r\n qualifiedName: /(?:[\\w\\.\\-]+:)?[\\w\\.\\-]+/,\r\n tokenizer: {\r\n root: [\r\n [/[^<&]+/, ''],\r\n { include: '@whitespace' },\r\n // Standard opening tag\r\n [/(<)(@qualifiedName)/, [{ token: 'delimiter' }, { token: 'tag', next: '@tag' }]],\r\n // Standard closing tag\r\n [\r\n /(<\\/)(@qualifiedName)(\\s*)(>)/,\r\n [{ token: 'delimiter' }, { token: 'tag' }, '', { token: 'delimiter' }]\r\n ],\r\n // Meta tags - instruction\r\n [/(<\\?)(@qualifiedName)/, [{ token: 'delimiter' }, { token: 'metatag', next: '@tag' }]],\r\n // Meta tags - declaration\r\n [/(<\\!)(@qualifiedName)/, [{ token: 'delimiter' }, { token: 'metatag', next: '@tag' }]],\r\n // CDATA\r\n [/<\\!\\[CDATA\\[/, { token: 'delimiter.cdata', next: '@cdata' }],\r\n [/&\\w+;/, 'string.escape']\r\n ],\r\n cdata: [\r\n [/[^\\]]+/, ''],\r\n [/\\]\\]>/, { token: 'delimiter.cdata', next: '@pop' }],\r\n [/\\]/, '']\r\n ],\r\n tag: [\r\n [/[ \\t\\r\\n]+/, ''],\r\n [\r\n /(@qualifiedName)(\\s*=\\s*)(\"[^\"]*\"|'[^']*')/,\r\n ['attribute.name', '', 'attribute.value']\r\n ],\r\n [\r\n /(@qualifiedName)(\\s*=\\s*)(\"[^\">?\\/]*|'[^'>?\\/]*)(?=[\\?\\/]\\>)/,\r\n ['attribute.name', '', 'attribute.value']\r\n ],\r\n [\r\n /(@qualifiedName)(\\s*=\\s*)(\"[^\">]*|'[^'>]*)/,\r\n ['attribute.name', '', 'attribute.value']\r\n ],\r\n [/@qualifiedName/, 'attribute.name'],\r\n [/\\?>/, { token: 'delimiter', next: '@pop' }],\r\n [/(\\/)(>)/, [{ token: 'tag' }, { token: 'delimiter', next: '@pop' }]],\r\n [/>/, { token: 'delimiter', next: '@pop' }]\r\n ],\r\n whitespace: [\r\n [/[ \\t\\r\\n]+/, ''],\r\n [/<!--/, { token: 'comment', next: '@comment' }]\r\n ],\r\n comment: [\r\n [/[^<\\-]+/, 'comment.content'],\r\n [/-->/, { token: 'comment', next: '@pop' }],\r\n [/<!--/, 'comment.content.invalid'],\r\n [/[<\\-]/, 'comment.content']\r\n ]\r\n }\r\n};\r\n\n\n//# sourceURL=webpack://browser-esm-webpack/./node_modules/monaco-editor/esm/vs/basic-languages/xml/xml.js?");
|
||||
|
||||
/***/ })
|
||||
|
||||
}]);
|
||||
\**********************************************************************/(__unused_webpack_module,__webpack_exports__,__webpack_require__)=>{eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "conf": () => (/* binding */ conf),\n/* harmony export */ "language": () => (/* binding */ language)\n/* harmony export */ });\n/* harmony import */ var _editor_editor_api_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../editor/editor.api.js */ "./node_modules/monaco-editor/esm/vs/editor/editor.api.js");\n/*!-----------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Version: 0.33.0(4b1abad427e58dbedc1215d99a0902ffc885fcd4)\n * Released under the MIT license\n * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt\n *-----------------------------------------------------------------------------*/\n\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __reExport = (target, module, copyDefault, desc) => {\n if (module && typeof module === "object" || typeof module === "function") {\n for (let key of __getOwnPropNames(module))\n if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default"))\n __defProp(target, key, { get: () => module[key], enumerable: !(desc = __getOwnPropDesc(module, key)) || desc.enumerable });\n }\n return target;\n};\n\n// src/fillers/monaco-editor-core.ts\nvar monaco_editor_core_exports = {};\n__reExport(monaco_editor_core_exports, _editor_editor_api_js__WEBPACK_IMPORTED_MODULE_0__);\n\n\n// src/basic-languages/xml/xml.ts\nvar conf = {\n comments: {\n blockComment: ["\x3c!--", "--\x3e"]\n },\n brackets: [["<", ">"]],\n autoClosingPairs: [\n { open: "<", close: ">" },\n { open: "\'", close: "\'" },\n { open: \'"\', close: \'"\' }\n ],\n surroundingPairs: [\n { open: "<", close: ">" },\n { open: "\'", close: "\'" },\n { open: \'"\', close: \'"\' }\n ],\n onEnterRules: [\n {\n beforeText: new RegExp(`<([_:\\\\w][_:\\\\w-.\\\\d]*)([^/>]*(?!/)>)[^<]*$`, "i"),\n afterText: /^<\\/([_:\\w][_:\\w-.\\d]*)\\s*>$/i,\n action: {\n indentAction: monaco_editor_core_exports.languages.IndentAction.IndentOutdent\n }\n },\n {\n beforeText: new RegExp(`<(\\\\w[\\\\w\\\\d]*)([^/>]*(?!/)>)[^<]*$`, "i"),\n action: { indentAction: monaco_editor_core_exports.languages.IndentAction.Indent }\n }\n ]\n};\nvar language = {\n defaultToken: "",\n tokenPostfix: ".xml",\n ignoreCase: true,\n qualifiedName: /(?:[\\w\\.\\-]+:)?[\\w\\.\\-]+/,\n tokenizer: {\n root: [\n [/[^<&]+/, ""],\n { include: "@whitespace" },\n [/(<)(@qualifiedName)/, [{ token: "delimiter" }, { token: "tag", next: "@tag" }]],\n [\n /(<\\/)(@qualifiedName)(\\s*)(>)/,\n [{ token: "delimiter" }, { token: "tag" }, "", { token: "delimiter" }]\n ],\n [/(<\\?)(@qualifiedName)/, [{ token: "delimiter" }, { token: "metatag", next: "@tag" }]],\n [/(<\\!)(@qualifiedName)/, [{ token: "delimiter" }, { token: "metatag", next: "@tag" }]],\n [/<\\!\\[CDATA\\[/, { token: "delimiter.cdata", next: "@cdata" }],\n [/&\\w+;/, "string.escape"]\n ],\n cdata: [\n [/[^\\]]+/, ""],\n [/\\]\\]>/, { token: "delimiter.cdata", next: "@pop" }],\n [/\\]/, ""]\n ],\n tag: [\n [/[ \\t\\r\\n]+/, ""],\n [/(@qualifiedName)(\\s*=\\s*)("[^"]*"|\'[^\']*\')/, ["attribute.name", "", "attribute.value"]],\n [\n /(@qualifiedName)(\\s*=\\s*)("[^">?\\/]*|\'[^\'>?\\/]*)(?=[\\?\\/]\\>)/,\n ["attribute.name", "", "attribute.value"]\n ],\n [/(@qualifiedName)(\\s*=\\s*)("[^">]*|\'[^\'>]*)/, ["attribute.name", "", "attribute.value"]],\n [/@qualifiedName/, "attribute.name"],\n [/\\?>/, { token: "delimiter", next: "@pop" }],\n [/(\\/)(>)/, [{ token: "tag" }, { token: "delimiter", next: "@pop" }]],\n [/>/, { token: "delimiter", next: "@pop" }]\n ],\n whitespace: [\n [/[ \\t\\r\\n]+/, ""],\n [/\x3c!--/, { token: "comment", next: "@comment" }]\n ],\n comment: [\n [/[^<\\-]+/, "comment.content"],\n [/--\x3e/, { token: "comment", next: "@pop" }],\n [/\x3c!--/, "comment.content.invalid"],\n [/[<\\-]/, "comment.content"]\n ]\n }\n};\n\n\n\n//# sourceURL=webpack://monanco_wpack/./node_modules/monaco-editor/esm/vs/basic-languages/xml/xml.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
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
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
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user