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

ber-security.graylog.graylog-plugin-alert-wizard.5.2.1.source-code.023545291c7d55eb893591da836fc73d.js Maven / Gradle / Ivy

There is a newer version: 6.1.1
Show newest version
(()=>{var k=(r,h)=>()=>(h||r((h={exports:{}}).exports,h),h.exports);var _=k((x,v)=>{ace.define("ace/mode/doc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(r,h,p){"use strict";var f=r("../lib/oop"),u=r("./text_highlight_rules").TextHighlightRules,o=function(){this.$rules={start:[{token:"comment.doc.tag",regex:"@[\\w\\d_]+"},o.getTagRule(),{defaultToken:"comment.doc",caseInsensitive:!0}]}};f.inherits(o,u),o.getTagRule=function(s){return{token:"comment.doc.tag.storage.type",regex:"\\b(?:TODO|FIXME|XXX|HACK)\\b"}},o.getStartRule=function(s){return{token:"comment.doc",regex:"\\/\\*(?=\\*)",next:s}},o.getEndRule=function(s){return{token:"comment.doc",regex:"\\*\\/",next:s}},h.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,h,p){var f=r("../lib/oop"),u=r("../lib/lang"),o=r("./doc_comment_highlight_rules").DocCommentHighlightRules,s=r("./text_highlight_rules").TextHighlightRules,e=function(){var n=u.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=u.arrayToMap("null|true|false|NaN|Infinity|__FILE__|__LINE__|undefined".split("|")),l=u.arrayToMap("debugger|with|const|export|let|private|public|yield|protected|extern|native|as|operator|__fake__|__readonly__".split("|")),i="[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+)("+i+")"},{token:function(a){return a=="this"?"variable.language":a=="function"?"storage.type":n.hasOwnProperty(a)||l.hasOwnProperty(a)?"keyword":t.hasOwnProperty(a)?"constant.language":/^_?[A-Z][a-zA-Z0-9_]*$/.test(a)?"language.support.class":"identifier"},regex:i},{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")])};f.inherits(e,s),h.JsxHighlightRules=e});ace.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(r,h,p){"use strict";var f=r("../range").Range,u=function(){};(function(){this.checkOutdent=function(o,s){return/^\s+$/.test(o)?/^\s*\}/.test(s):!1},this.autoOutdent=function(o,s){var e=o.getLine(s),n=e.match(/^(\s*\})/);if(!n)return 0;var t=n[1].length,l=o.findMatchingBracket({row:s,column:t});if(!l||l.row==s)return 0;var i=this.$getIndent(o.getLine(l.row));o.replace(new f(s,0,s,t-1),i)},this.$getIndent=function(o){return o.match(/^\s*/)[0]}}).call(u.prototype),h.MatchingBraceOutdent=u});ace.define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"],function(r,h,p){"use strict";var f=r("../../lib/oop"),u=r("../../range").Range,o=r("./fold_mode").FoldMode,s=h.FoldMode=function(e){e&&(this.foldingStartMarker=new RegExp(this.foldingStartMarker.source.replace(/\|[^|]*?$/,"|"+e.start)),this.foldingStopMarker=new RegExp(this.foldingStopMarker.source.replace(/\|[^|]*?$/,"|"+e.end)))};f.inherits(s,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 l=e.getLine(t);if(this.singleLineBlockCommentRe.test(l)&&!this.startRegionRe.test(l)&&!this.tripleStarBlockCommentRe.test(l))return"";var i=this._getFoldWidgetBase(e,n,t);return!i&&this.startRegionRe.test(l)?"start":i},this.getFoldWidgetRange=function(e,n,t,l){var i=e.getLine(t);if(this.startRegionRe.test(i))return this.getCommentRegionBlock(e,i,t);var g=i.match(this.foldingStartMarker);if(g){var a=g.index;if(g[1])return this.openingBracketBlock(e,g[1],t,a);var c=e.getCommentFoldRange(t,a+g[0].length,1);return c&&!c.isMultiLine()&&(l?c=this.getSectionRange(e,t):n!="all"&&(c=null)),c}if(n!=="markbegin"){var g=i.match(this.foldingStopMarker);if(g){var a=g.index+g[0].length;return g[1]?this.closingBracketBlock(e,g[1],t,a):e.getCommentFoldRange(t,a,-1)}}},this.getSectionRange=function(e,n){var t=e.getLine(n),l=t.search(/\S/),i=n,a=t.length;n=n+1;for(var c=n,g=e.getLength();++nd)break;var m=this.getFoldWidgetRange(e,"all",n);if(m){if(m.start.row<=i)break;if(m.isMultiLine())n=m.end.row;else if(l==d)break}c=n}}return new u(i,a,c,e.getLine(c).length)},this.getCommentRegionBlock=function(e,n,t){for(var l=n.search(/\s*$/),i=e.getLength(),a=t,c=/^\s*(?:\/\*|\/\/|--)#?(end)?region\b/,g=1;++ta)return new u(a,l,m,n.length)}}.call(s.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/behaviour/cstyle","ace/mode/folding/cstyle"],function(r,h,p){"use strict";var f=r("../lib/oop"),u=r("./text").Mode,o=r("./jsx_highlight_rules").JsxHighlightRules,s=r("./matching_brace_outdent").MatchingBraceOutdent,e=r("./behaviour/cstyle").CstyleBehaviour,n=r("./folding/cstyle").FoldMode;function t(){this.HighlightRules=o,this.$outdent=new s,this.$behaviour=new e,this.foldingRules=new n}f.inherits(t,u),function(){this.lineCommentStart="//",this.blockComment={start:"/*",end:"*/"},this.getNextLineIndent=function(l,i,a){var c=this.$getIndent(i),g=this.getTokenizer().getLineTokens(i,l),d=g.tokens;if(d.length&&d[d.length-1].type=="comment")return c;if(l=="start"){var m=i.match(/^.*[\{\(\[]\s*$/);m&&(c+=a)}return c},this.checkOutdent=function(l,i,a){return this.$outdent.checkOutdent(i,a)},this.autoOutdent=function(l,i,a){this.$outdent.autoOutdent(i,a)},this.$id="ace/mode/jsx"}.call(t.prototype),h.Mode=t});(function(){ace.require(["ace/mode/jsx"],function(r){typeof v=="object"&&typeof x=="object"&&v&&(v.exports=r)})})()});_();})();

//# sourceMappingURL=023545291c7d55eb893591da836fc73d.js.map




© 2015 - 2025 Weber Informatics LLC | Privacy Policy