web-interface.assets.9279b41aaa11e4e04c3a0d1c51dd0b02.js Maven / Gradle / Ivy
(()=>{var k=(r,c)=>()=>(c||r((c={exports:{}}).exports,c),c.exports);var _=k((v,x)=>{ace.define("ace/mode/doc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(r,c,p){"use strict";var d=r("../lib/oop"),h=r("./text_highlight_rules").TextHighlightRules,o=function(){this.$rules={start:[{token:"comment.doc.tag",regex:"@\\w+(?=\\s|$)"},o.getTagRule(),{defaultToken:"comment.doc",caseInsensitive:!0}]}};d.inherits(o,h),o.getTagRule=function(g){return{token:"comment.doc.tag.storage.type",regex:"\\b(?:TODO|FIXME|XXX|HACK)\\b"}},o.getStartRule=function(g){return{token:"comment.doc",regex:"\\/\\*(?=\\*)",next:g}},o.getEndRule=function(g){return{token:"comment.doc",regex:"\\*\\/",next:g}},c.DocCommentHighlightRules=o});ace.define("ace/mode/jsx_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/doc_comment_highlight_rules","ace/mode/text_highlight_rules"],function(r,c,p){var d=r("../lib/oop"),h=r("../lib/lang"),o=r("./doc_comment_highlight_rules").DocCommentHighlightRules,g=r("./text_highlight_rules").TextHighlightRules,e=function(){var n=h.arrayToMap("break|do|instanceof|typeof|case|else|new|var|catch|finally|return|void|continue|for|switch|default|while|function|this|if|throw|delete|in|try|class|extends|super|import|from|into|implements|interface|static|mixin|override|abstract|final|number|int|string|boolean|variant|log|assert".split("|")),t=h.arrayToMap("null|true|false|NaN|Infinity|__FILE__|__LINE__|undefined".split("|")),i=h.arrayToMap("debugger|with|const|export|let|private|public|yield|protected|extern|native|as|operator|__fake__|__readonly__".split("|")),a="[a-zA-Z_][a-zA-Z0-9_]*\\b";this.$rules={start:[{token:"comment",regex:"\\/\\/.*$"},o.getStartRule("doc-start"),{token:"comment",regex:"\\/\\*",next:"comment"},{token:"string.regexp",regex:"[/](?:(?:\\[(?:\\\\]|[^\\]])+\\])|(?:\\\\/|[^\\]/]))*[/]\\w*\\s*(?=[).,;]|$)"},{token:"string",regex:'["](?:(?:\\\\.)|(?:[^"\\\\]))*?["]'},{token:"string",regex:"['](?:(?:\\\\.)|(?:[^'\\\\]))*?[']"},{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:["storage.type","text","entity.name.function"],regex:"(function)(\\s+)("+a+")"},{token:function(l){return l=="this"?"variable.language":l=="function"?"storage.type":n.hasOwnProperty(l)||i.hasOwnProperty(l)?"keyword":t.hasOwnProperty(l)?"constant.language":/^_?[A-Z][a-zA-Z0-9_]*$/.test(l)?"language.support.class":"identifier"},regex:a},{token:"keyword.operator",regex:"!|%|&|\\*|\\-\\-|\\-|\\+\\+|\\+|~|==|=|!=|<=|>=|<<=|>>=|>>>=|<>|<|>|!|&&|\\|\\||\\?\\:|\\*=|%=|\\+=|\\-=|&=|\\^=|\\b(?:in|instanceof|new|delete|typeof|void)"},{token:"punctuation.operator",regex:"\\?|\\:|\\,|\\;|\\."},{token:"paren.lparen",regex:"[[({<]"},{token:"paren.rparen",regex:"[\\])}>]"},{token:"text",regex:"\\s+"}],comment:[{token:"comment",regex:"\\*\\/",next:"start"},{defaultToken:"comment"}]},this.embedRules(o,"doc-",[o.getEndRule("start")])};d.inherits(e,g),c.JsxHighlightRules=e});ace.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(r,c,p){"use strict";var d=r("../range").Range,h=function(){};(function(){this.checkOutdent=function(o,g){return/^\s+$/.test(o)?/^\s*\}/.test(g):!1},this.autoOutdent=function(o,g){var e=o.getLine(g),n=e.match(/^(\s*\})/);if(!n)return 0;var t=n[1].length,i=o.findMatchingBracket({row:g,column:t});if(!i||i.row==g)return 0;var a=this.$getIndent(o.getLine(i.row));o.replace(new d(g,0,g,t-1),a)},this.$getIndent=function(o){return o.match(/^\s*/)[0]}}).call(h.prototype),c.MatchingBraceOutdent=h});ace.define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"],function(r,c,p){"use strict";var d=r("../../lib/oop"),h=r("../../range").Range,o=r("./fold_mode").FoldMode,g=c.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(g,o),(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,n,t){var i=e.getLine(t);if(this.singleLineBlockCommentRe.test(i)&&!this.startRegionRe.test(i)&&!this.tripleStarBlockCommentRe.test(i))return"";var a=this._getFoldWidgetBase(e,n,t);return!a&&this.startRegionRe.test(i)?"start":a},this.getFoldWidgetRange=function(e,n,t,i){var a=e.getLine(t);if(this.startRegionRe.test(a))return this.getCommentRegionBlock(e,a,t);var s=a.match(this.foldingStartMarker);if(s){var l=s.index;if(s[1])return this.openingBracketBlock(e,s[1],t,l);var u=e.getCommentFoldRange(t,l+s[0].length,1);return u&&!u.isMultiLine()&&(i?u=this.getSectionRange(e,t):n!="all"&&(u=null)),u}if(n!=="markbegin"){var s=a.match(this.foldingStopMarker);if(s){var l=s.index+s[0].length;return s[1]?this.closingBracketBlock(e,s[1],t,l):e.getCommentFoldRange(t,l,-1)}}},this.getSectionRange=function(e,n){var t=e.getLine(n),i=t.search(/\S/),a=n,l=t.length;n=n+1;for(var u=n,s=e.getLength();++nf)break;var m=this.getFoldWidgetRange(e,"all",n);if(m){if(m.start.row<=a)break;if(m.isMultiLine())n=m.end.row;else if(i==f)break}u=n}}return new h(a,l,u,e.getLine(u).length)},this.getCommentRegionBlock=function(e,n,t){for(var i=n.search(/\s*$/),a=e.getLength(),l=t,u=/^\s*(?:\/\*|\/\/|--)#?(end)?region\b/,s=1;++tl)return new h(l,i,m,n.length)}}).call(g.prototype)});ace.define("ace/mode/jsx",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/jsx_highlight_rules","ace/mode/matching_brace_outdent","ace/mode/folding/cstyle"],function(r,c,p){"use strict";var d=r("../lib/oop"),h=r("./text").Mode,o=r("./jsx_highlight_rules").JsxHighlightRules,g=r("./matching_brace_outdent").MatchingBraceOutdent,e=r("./folding/cstyle").FoldMode;function n(){this.HighlightRules=o,this.$outdent=new g,this.$behaviour=this.$defaultBehaviour,this.foldingRules=new e}d.inherits(n,h),(function(){this.lineCommentStart="//",this.blockComment={start:"/*",end:"*/"},this.getNextLineIndent=function(t,i,a){var l=this.$getIndent(i),u=this.getTokenizer().getLineTokens(i,t),s=u.tokens;if(s.length&&s[s.length-1].type=="comment")return l;if(t=="start"){var f=i.match(/^.*[\{\(\[]\s*$/);f&&(l+=a)}return l},this.checkOutdent=function(t,i,a){return this.$outdent.checkOutdent(i,a)},this.autoOutdent=function(t,i,a){this.$outdent.autoOutdent(i,a)},this.$id="ace/mode/jsx"}).call(n.prototype),c.Mode=n});(function(){ace.require(["ace/mode/jsx"],function(r){typeof x=="object"&&typeof v=="object"&&x&&(x.exports=r)})})()});_();})();
//# sourceMappingURL=9279b41aaa11e4e04c3a0d1c51dd0b02.js.map
© 2015 - 2024 Weber Informatics LLC | Privacy Policy