All Downloads are FREE. Search and download functionalities are using the official Maven repository.

web-interface.assets.109a021cf363699a5ca21699ebfc9ccb.js Maven / Gradle / Ivy

There is a newer version: 6.1.4
Show newest version
(()=>{var x=(o,s)=>()=>(s||o((s={exports:{}}).exports,s),s.exports);var R=x((p,k)=>{ace.define("ace/mode/json_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(o,s,v){"use strict";var d=o("../lib/oop"),u=o("./text_highlight_rules").TextHighlightRules,l=function(){this.$rules={start:[{token:"variable",regex:'["](?:(?:\\\\.)|(?:[^"\\\\]))*?["]\\s*(?=:)'},{token:"string",regex:'"',next:"string"},{token:"constant.numeric",regex:"0[xX][0-9a-fA-F]+\\b"},{token:"constant.numeric",regex:"[+-]?\\d+(?:(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)?\\b"},{token:"constant.language.boolean",regex:"(?:true|false)\\b"},{token:"text",regex:"['](?:(?:\\\\.)|(?:[^'\\\\]))*?[']"},{token:"comment",regex:"\\/\\/.*$"},{token:"comment.start",regex:"\\/\\*",next:"comment"},{token:"paren.lparen",regex:"[[({]"},{token:"paren.rparen",regex:"[\\])}]"},{token:"punctuation.operator",regex:/[,]/},{token:"text",regex:"\\s+"}],string:[{token:"constant.language.escape",regex:/\\(?:x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|["\\\/bfnrt])/},{token:"string",regex:'"|$',next:"start"},{defaultToken:"string"}],comment:[{token:"comment.end",regex:"\\*\\/",next:"start"},{defaultToken:"comment"}]}};d.inherits(l,u),s.JsonHighlightRules=l});ace.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(o,s,v){"use strict";var d=o("../range").Range,u=function(){};(function(){this.checkOutdent=function(l,h){return/^\s+$/.test(l)?/^\s*\}/.test(h):!1},this.autoOutdent=function(l,h){var e=l.getLine(h),i=e.match(/^(\s*\})/);if(!i)return 0;var t=i[1].length,r=l.findMatchingBracket({row:h,column:t});if(!r||r.row==h)return 0;var n=this.$getIndent(l.getLine(r.row));l.replace(new d(h,0,h,t-1),n)},this.$getIndent=function(l){return l.match(/^\s*/)[0]}}).call(u.prototype),s.MatchingBraceOutdent=u});ace.define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"],function(o,s,v){"use strict";var d=o("../../lib/oop"),u=o("../../range").Range,l=o("./fold_mode").FoldMode,h=s.FoldMode=function(e){e&&(this.foldingStartMarker=new RegExp(this.foldingStartMarker.source.replace(/\|[^|]*?$/,"|"+e.start)),this.foldingStopMarker=new RegExp(this.foldingStopMarker.source.replace(/\|[^|]*?$/,"|"+e.end)))};d.inherits(h,l),(function(){this.foldingStartMarker=/([\{\[\(])[^\}\]\)]*$|^\s*(\/\*)/,this.foldingStopMarker=/^[^\[\{\(]*([\}\]\)])|^[\s\*]*(\*\/)/,this.singleLineBlockCommentRe=/^\s*(\/\*).*\*\/\s*$/,this.tripleStarBlockCommentRe=/^\s*(\/\*\*\*).*\*\/\s*$/,this.startRegionRe=/^\s*(\/\*|\/\/)#?region\b/,this._getFoldWidgetBase=this.getFoldWidget,this.getFoldWidget=function(e,i,t){var r=e.getLine(t);if(this.singleLineBlockCommentRe.test(r)&&!this.startRegionRe.test(r)&&!this.tripleStarBlockCommentRe.test(r))return"";var n=this._getFoldWidgetBase(e,i,t);return!n&&this.startRegionRe.test(r)?"start":n},this.getFoldWidgetRange=function(e,i,t,r){var n=e.getLine(t);if(this.startRegionRe.test(n))return this.getCommentRegionBlock(e,n,t);var a=n.match(this.foldingStartMarker);if(a){var c=a.index;if(a[1])return this.openingBracketBlock(e,a[1],t,c);var g=e.getCommentFoldRange(t,c+a[0].length,1);return g&&!g.isMultiLine()&&(r?g=this.getSectionRange(e,t):i!="all"&&(g=null)),g}if(i!=="markbegin"){var a=n.match(this.foldingStopMarker);if(a){var c=a.index+a[0].length;return a[1]?this.closingBracketBlock(e,a[1],t,c):e.getCommentFoldRange(t,c,-1)}}},this.getSectionRange=function(e,i){var t=e.getLine(i),r=t.search(/\S/),n=i,c=t.length;i=i+1;for(var g=i,a=e.getLength();++im)break;var f=this.getFoldWidgetRange(e,"all",i);if(f){if(f.start.row<=n)break;if(f.isMultiLine())i=f.end.row;else if(r==m)break}g=i}}return new u(n,c,g,e.getLine(g).length)},this.getCommentRegionBlock=function(e,i,t){for(var r=i.search(/\s*$/),n=e.getLength(),c=t,g=/^\s*(?:\/\*|\/\/|--)#?(end)?region\b/,a=1;++tc)return new u(c,r,f,i.length)}}).call(h.prototype)});ace.define("ace/mode/json",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/json_highlight_rules","ace/mode/matching_brace_outdent","ace/mode/folding/cstyle","ace/worker/worker_client"],function(o,s,v){"use strict";var d=o("../lib/oop"),u=o("./text").Mode,l=o("./json_highlight_rules").JsonHighlightRules,h=o("./matching_brace_outdent").MatchingBraceOutdent,e=o("./folding/cstyle").FoldMode,i=o("../worker/worker_client").WorkerClient,t=function(){this.HighlightRules=l,this.$outdent=new h,this.$behaviour=this.$defaultBehaviour,this.foldingRules=new e};d.inherits(t,u),(function(){this.lineCommentStart="//",this.blockComment={start:"/*",end:"*/"},this.getNextLineIndent=function(r,n,c){var g=this.$getIndent(n);if(r=="start"){var a=n.match(/^.*[\{\(\[]\s*$/);a&&(g+=c)}return g},this.checkOutdent=function(r,n,c){return this.$outdent.checkOutdent(n,c)},this.autoOutdent=function(r,n,c){this.$outdent.autoOutdent(n,c)},this.createWorker=function(r){var n=new i(["ace"],"ace/mode/json_worker","JsonWorker");return n.attachToDocument(r.getDocument()),n.on("annotate",function(c){r.setAnnotations(c.data)}),n.on("terminate",function(){r.clearAnnotations()}),n},this.$id="ace/mode/json"}).call(t.prototype),s.Mode=t});(function(){ace.require(["ace/mode/json"],function(o){typeof k=="object"&&typeof p=="object"&&k&&(k.exports=o)})})()});R();})();

//# sourceMappingURL=109a021cf363699a5ca21699ebfc9ccb.js.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy