Projekt

Obecné

Profil

Stáhnout (70.3 KB) Statistiky
| Větev: | Tag: | Revize:
1
ace.define("ace/mode/doc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"], function(require, exports, module) {
2
"use strict";
3

    
4
var oop = require("../lib/oop");
5
var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
6

    
7
var DocCommentHighlightRules = function() {
8
    this.$rules = {
9
        "start" : [ {
10
            token : "comment.doc.tag",
11
            regex : "@[\\w\\d_]+" // TODO: fix email addresses
12
        }, 
13
        DocCommentHighlightRules.getTagRule(),
14
        {
15
            defaultToken : "comment.doc",
16
            caseInsensitive: true
17
        }]
18
    };
19
};
20

    
21
oop.inherits(DocCommentHighlightRules, TextHighlightRules);
22

    
23
DocCommentHighlightRules.getTagRule = function(start) {
24
    return {
25
        token : "comment.doc.tag.storage.type",
26
        regex : "\\b(?:TODO|FIXME|XXX|HACK)\\b"
27
    };
28
};
29

    
30
DocCommentHighlightRules.getStartRule = function(start) {
31
    return {
32
        token : "comment.doc", // doc comment
33
        regex : "\\/\\*(?=\\*)",
34
        next  : start
35
    };
36
};
37

    
38
DocCommentHighlightRules.getEndRule = function (start) {
39
    return {
40
        token : "comment.doc", // closing comment
41
        regex : "\\*\\/",
42
        next  : start
43
    };
44
};
45

    
46

    
47
exports.DocCommentHighlightRules = DocCommentHighlightRules;
48

    
49
});
50

    
51
ace.define("ace/mode/javascript_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/doc_comment_highlight_rules","ace/mode/text_highlight_rules"], function(require, exports, module) {
52
"use strict";
53

    
54
var oop = require("../lib/oop");
55
var DocCommentHighlightRules = require("./doc_comment_highlight_rules").DocCommentHighlightRules;
56
var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
57
var identifierRe = "[a-zA-Z\\$_\u00a1-\uffff][a-zA-Z\\d\\$_\u00a1-\uffff]*";
58

    
59
var JavaScriptHighlightRules = function(options) {
60
    var keywordMapper = this.createKeywordMapper({
61
        "variable.language":
62
            "Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|"  + // Constructors
63
            "Namespace|QName|XML|XMLList|"                                             + // E4X
64
            "ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|"   +
65
            "Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|"                    +
66
            "Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|"   + // Errors
67
            "SyntaxError|TypeError|URIError|"                                          +
68
            "decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|" + // Non-constructor functions
69
            "isNaN|parseFloat|parseInt|"                                               +
70
            "JSON|Math|"                                                               + // Other
71
            "this|arguments|prototype|window|document"                                 , // Pseudo
72
        "keyword":
73
            "const|yield|import|get|set|async|await|" +
74
            "break|case|catch|continue|default|delete|do|else|finally|for|function|" +
75
            "if|in|of|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|" +
76
            "__parent__|__count__|escape|unescape|with|__proto__|" +
77
            "class|enum|extends|super|export|implements|private|public|interface|package|protected|static",
78
        "storage.type":
79
            "const|let|var|function",
80
        "constant.language":
81
            "null|Infinity|NaN|undefined",
82
        "support.function":
83
            "alert",
84
        "constant.language.boolean": "true|false"
85
    }, "identifier");
86
    var kwBeforeRe = "case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void";
87

    
88
    var escapedRe = "\\\\(?:x[0-9a-fA-F]{2}|" + // hex
89
        "u[0-9a-fA-F]{4}|" + // unicode
90
        "u{[0-9a-fA-F]{1,6}}|" + // es6 unicode
91
        "[0-2][0-7]{0,2}|" + // oct
92
        "3[0-7][0-7]?|" + // oct
93
        "[4-7][0-7]?|" + //oct
94
        ".)";
95

    
96
    this.$rules = {
97
        "no_regex" : [
98
            DocCommentHighlightRules.getStartRule("doc-start"),
99
            comments("no_regex"),
100
            {
101
                token : "string",
102
                regex : "'(?=.)",
103
                next  : "qstring"
104
            }, {
105
                token : "string",
106
                regex : '"(?=.)',
107
                next  : "qqstring"
108
            }, {
109
                token : "constant.numeric", // hexadecimal, octal and binary
110
                regex : /0(?:[xX][0-9a-fA-F]+|[oO][0-7]+|[bB][01]+)\b/
111
            }, {
112
                token : "constant.numeric", // decimal integers and floats
113
                regex : /(?:\d\d*(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+\b)?/
114
            }, {
115
                token : [
116
                    "storage.type", "punctuation.operator", "support.function",
117
                    "punctuation.operator", "entity.name.function", "text","keyword.operator"
118
                ],
119
                regex : "(" + identifierRe + ")(\\.)(prototype)(\\.)(" + identifierRe +")(\\s*)(=)",
120
                next: "function_arguments"
121
            }, {
122
                token : [
123
                    "storage.type", "punctuation.operator", "entity.name.function", "text",
124
                    "keyword.operator", "text", "storage.type", "text", "paren.lparen"
125
                ],
126
                regex : "(" + identifierRe + ")(\\.)(" + identifierRe +")(\\s*)(=)(\\s*)(function)(\\s*)(\\()",
127
                next: "function_arguments"
128
            }, {
129
                token : [
130
                    "entity.name.function", "text", "keyword.operator", "text", "storage.type",
131
                    "text", "paren.lparen"
132
                ],
133
                regex : "(" + identifierRe +")(\\s*)(=)(\\s*)(function)(\\s*)(\\()",
134
                next: "function_arguments"
135
            }, {
136
                token : [
137
                    "storage.type", "punctuation.operator", "entity.name.function", "text",
138
                    "keyword.operator", "text",
139
                    "storage.type", "text", "entity.name.function", "text", "paren.lparen"
140
                ],
141
                regex : "(" + identifierRe + ")(\\.)(" + identifierRe +")(\\s*)(=)(\\s*)(function)(\\s+)(\\w+)(\\s*)(\\()",
142
                next: "function_arguments"
143
            }, {
144
                token : [
145
                    "storage.type", "text", "entity.name.function", "text", "paren.lparen"
146
                ],
147
                regex : "(function)(\\s+)(" + identifierRe + ")(\\s*)(\\()",
148
                next: "function_arguments"
149
            }, {
150
                token : [
151
                    "entity.name.function", "text", "punctuation.operator",
152
                    "text", "storage.type", "text", "paren.lparen"
153
                ],
154
                regex : "(" + identifierRe + ")(\\s*)(:)(\\s*)(function)(\\s*)(\\()",
155
                next: "function_arguments"
156
            }, {
157
                token : [
158
                    "text", "text", "storage.type", "text", "paren.lparen"
159
                ],
160
                regex : "(:)(\\s*)(function)(\\s*)(\\()",
161
                next: "function_arguments"
162
            }, {
163
                token : "keyword",
164
                regex : "from(?=\\s*('|\"))"
165
            }, {
166
                token : "keyword",
167
                regex : "(?:" + kwBeforeRe + ")\\b",
168
                next : "start"
169
            }, {
170
                token : ["support.constant"],
171
                regex : /that\b/
172
            }, {
173
                token : ["storage.type", "punctuation.operator", "support.function.firebug"],
174
                regex : /(console)(\.)(warn|info|log|error|time|trace|timeEnd|assert)\b/
175
            }, {
176
                token : keywordMapper,
177
                regex : identifierRe
178
            }, {
179
                token : "punctuation.operator",
180
                regex : /[.](?![.])/,
181
                next  : "property"
182
            }, {
183
                token : "storage.type",
184
                regex : /=>/,
185
                next  : "start"
186
            }, {
187
                token : "keyword.operator",
188
                regex : /--|\+\+|\.{3}|===|==|=|!=|!==|<+=?|>+=?|!|&&|\|\||\?:|[!$%&*+\-~\/^]=?/,
189
                next  : "start"
190
            }, {
191
                token : "punctuation.operator",
192
                regex : /[?:,;.]/,
193
                next  : "start"
194
            }, {
195
                token : "paren.lparen",
196
                regex : /[\[({]/,
197
                next  : "start"
198
            }, {
199
                token : "paren.rparen",
200
                regex : /[\])}]/
201
            }, {
202
                token: "comment",
203
                regex: /^#!.*$/
204
            }
205
        ],
206
        property: [{
207
                token : "text",
208
                regex : "\\s+"
209
            }, {
210
                token : [
211
                    "storage.type", "punctuation.operator", "entity.name.function", "text",
212
                    "keyword.operator", "text",
213
                    "storage.type", "text", "entity.name.function", "text", "paren.lparen"
214
                ],
215
                regex : "(" + identifierRe + ")(\\.)(" + identifierRe +")(\\s*)(=)(\\s*)(function)(?:(\\s+)(\\w+))?(\\s*)(\\()",
216
                next: "function_arguments"
217
            }, {
218
                token : "punctuation.operator",
219
                regex : /[.](?![.])/
220
            }, {
221
                token : "support.function",
222
                regex : /(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\b(?=\()/
223
            }, {
224
                token : "support.function.dom",
225
                regex : /(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName|ClassName)|ById)|Attribute(?:Node)?)|blur)\b(?=\()/
226
            }, {
227
                token :  "support.constant",
228
                regex : /(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\b/
229
            }, {
230
                token : "identifier",
231
                regex : identifierRe
232
            }, {
233
                regex: "",
234
                token: "empty",
235
                next: "no_regex"
236
            }
237
        ],
238
        "start": [
239
            DocCommentHighlightRules.getStartRule("doc-start"),
240
            comments("start"),
241
            {
242
                token: "string.regexp",
243
                regex: "\\/",
244
                next: "regex"
245
            }, {
246
                token : "text",
247
                regex : "\\s+|^$",
248
                next : "start"
249
            }, {
250
                token: "empty",
251
                regex: "",
252
                next: "no_regex"
253
            }
254
        ],
255
        "regex": [
256
            {
257
                token: "regexp.keyword.operator",
258
                regex: "\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"
259
            }, {
260
                token: "string.regexp",
261
                regex: "/[sxngimy]*",
262
                next: "no_regex"
263
            }, {
264
                token : "invalid",
265
                regex: /\{\d+\b,?\d*\}[+*]|[+*$^?][+*]|[$^][?]|\?{3,}/
266
            }, {
267
                token : "constant.language.escape",
268
                regex: /\(\?[:=!]|\)|\{\d+\b,?\d*\}|[+*]\?|[()$^+*?.]/
269
            }, {
270
                token : "constant.language.delimiter",
271
                regex: /\|/
272
            }, {
273
                token: "constant.language.escape",
274
                regex: /\[\^?/,
275
                next: "regex_character_class"
276
            }, {
277
                token: "empty",
278
                regex: "$",
279
                next: "no_regex"
280
            }, {
281
                defaultToken: "string.regexp"
282
            }
283
        ],
284
        "regex_character_class": [
285
            {
286
                token: "regexp.charclass.keyword.operator",
287
                regex: "\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"
288
            }, {
289
                token: "constant.language.escape",
290
                regex: "]",
291
                next: "regex"
292
            }, {
293
                token: "constant.language.escape",
294
                regex: "-"
295
            }, {
296
                token: "empty",
297
                regex: "$",
298
                next: "no_regex"
299
            }, {
300
                defaultToken: "string.regexp.charachterclass"
301
            }
302
        ],
303
        "function_arguments": [
304
            {
305
                token: "variable.parameter",
306
                regex: identifierRe
307
            }, {
308
                token: "punctuation.operator",
309
                regex: "[, ]+"
310
            }, {
311
                token: "punctuation.operator",
312
                regex: "$"
313
            }, {
314
                token: "empty",
315
                regex: "",
316
                next: "no_regex"
317
            }
318
        ],
319
        "qqstring" : [
320
            {
321
                token : "constant.language.escape",
322
                regex : escapedRe
323
            }, {
324
                token : "string",
325
                regex : "\\\\$",
326
                consumeLineEnd  : true
327
            }, {
328
                token : "string",
329
                regex : '"|$',
330
                next  : "no_regex"
331
            }, {
332
                defaultToken: "string"
333
            }
334
        ],
335
        "qstring" : [
336
            {
337
                token : "constant.language.escape",
338
                regex : escapedRe
339
            }, {
340
                token : "string",
341
                regex : "\\\\$",
342
                consumeLineEnd  : true
343
            }, {
344
                token : "string",
345
                regex : "'|$",
346
                next  : "no_regex"
347
            }, {
348
                defaultToken: "string"
349
            }
350
        ]
351
    };
352

    
353

    
354
    if (!options || !options.noES6) {
355
        this.$rules.no_regex.unshift({
356
            regex: "[{}]", onMatch: function(val, state, stack) {
357
                this.next = val == "{" ? this.nextState : "";
358
                if (val == "{" && stack.length) {
359
                    stack.unshift("start", state);
360
                }
361
                else if (val == "}" && stack.length) {
362
                    stack.shift();
363
                    this.next = stack.shift();
364
                    if (this.next.indexOf("string") != -1 || this.next.indexOf("jsx") != -1)
365
                        return "paren.quasi.end";
366
                }
367
                return val == "{" ? "paren.lparen" : "paren.rparen";
368
            },
369
            nextState: "start"
370
        }, {
371
            token : "string.quasi.start",
372
            regex : /`/,
373
            push  : [{
374
                token : "constant.language.escape",
375
                regex : escapedRe
376
            }, {
377
                token : "paren.quasi.start",
378
                regex : /\${/,
379
                push  : "start"
380
            }, {
381
                token : "string.quasi.end",
382
                regex : /`/,
383
                next  : "pop"
384
            }, {
385
                defaultToken: "string.quasi"
386
            }]
387
        });
388

    
389
        if (!options || options.jsx != false)
390
            JSX.call(this);
391
    }
392

    
393
    this.embedRules(DocCommentHighlightRules, "doc-",
394
        [ DocCommentHighlightRules.getEndRule("no_regex") ]);
395

    
396
    this.normalizeRules();
397
};
398

    
399
oop.inherits(JavaScriptHighlightRules, TextHighlightRules);
400

    
401
function JSX() {
402
    var tagRegex = identifierRe.replace("\\d", "\\d\\-");
403
    var jsxTag = {
404
        onMatch : function(val, state, stack) {
405
            var offset = val.charAt(1) == "/" ? 2 : 1;
406
            if (offset == 1) {
407
                if (state != this.nextState)
408
                    stack.unshift(this.next, this.nextState, 0);
409
                else
410
                    stack.unshift(this.next);
411
                stack[2]++;
412
            } else if (offset == 2) {
413
                if (state == this.nextState) {
414
                    stack[1]--;
415
                    if (!stack[1] || stack[1] < 0) {
416
                        stack.shift();
417
                        stack.shift();
418
                    }
419
                }
420
            }
421
            return [{
422
                type: "meta.tag.punctuation." + (offset == 1 ? "" : "end-") + "tag-open.xml",
423
                value: val.slice(0, offset)
424
            }, {
425
                type: "meta.tag.tag-name.xml",
426
                value: val.substr(offset)
427
            }];
428
        },
429
        regex : "</?" + tagRegex + "",
430
        next: "jsxAttributes",
431
        nextState: "jsx"
432
    };
433
    this.$rules.start.unshift(jsxTag);
434
    var jsxJsRule = {
435
        regex: "{",
436
        token: "paren.quasi.start",
437
        push: "start"
438
    };
439
    this.$rules.jsx = [
440
        jsxJsRule,
441
        jsxTag,
442
        {include : "reference"},
443
        {defaultToken: "string"}
444
    ];
445
    this.$rules.jsxAttributes = [{
446
        token : "meta.tag.punctuation.tag-close.xml",
447
        regex : "/?>",
448
        onMatch : function(value, currentState, stack) {
449
            if (currentState == stack[0])
450
                stack.shift();
451
            if (value.length == 2) {
452
                if (stack[0] == this.nextState)
453
                    stack[1]--;
454
                if (!stack[1] || stack[1] < 0) {
455
                    stack.splice(0, 2);
456
                }
457
            }
458
            this.next = stack[0] || "start";
459
            return [{type: this.token, value: value}];
460
        },
461
        nextState: "jsx"
462
    },
463
    jsxJsRule,
464
    comments("jsxAttributes"),
465
    {
466
        token : "entity.other.attribute-name.xml",
467
        regex : tagRegex
468
    }, {
469
        token : "keyword.operator.attribute-equals.xml",
470
        regex : "="
471
    }, {
472
        token : "text.tag-whitespace.xml",
473
        regex : "\\s+"
474
    }, {
475
        token : "string.attribute-value.xml",
476
        regex : "'",
477
        stateName : "jsx_attr_q",
478
        push : [
479
            {token : "string.attribute-value.xml", regex: "'", next: "pop"},
480
            {include : "reference"},
481
            {defaultToken : "string.attribute-value.xml"}
482
        ]
483
    }, {
484
        token : "string.attribute-value.xml",
485
        regex : '"',
486
        stateName : "jsx_attr_qq",
487
        push : [
488
            {token : "string.attribute-value.xml", regex: '"', next: "pop"},
489
            {include : "reference"},
490
            {defaultToken : "string.attribute-value.xml"}
491
        ]
492
    },
493
    jsxTag
494
    ];
495
    this.$rules.reference = [{
496
        token : "constant.language.escape.reference.xml",
497
        regex : "(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\.-]+;)"
498
    }];
499
}
500

    
501
function comments(next) {
502
    return [
503
        {
504
            token : "comment", // multi line comment
505
            regex : /\/\*/,
506
            next: [
507
                DocCommentHighlightRules.getTagRule(),
508
                {token : "comment", regex : "\\*\\/", next : next || "pop"},
509
                {defaultToken : "comment", caseInsensitive: true}
510
            ]
511
        }, {
512
            token : "comment",
513
            regex : "\\/\\/",
514
            next: [
515
                DocCommentHighlightRules.getTagRule(),
516
                {token : "comment", regex : "$|^", next : next || "pop"},
517
                {defaultToken : "comment", caseInsensitive: true}
518
            ]
519
        }
520
    ];
521
}
522
exports.JavaScriptHighlightRules = JavaScriptHighlightRules;
523
});
524

    
525
ace.define("ace/mode/css_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text_highlight_rules"], function(require, exports, module) {
526
"use strict";
527

    
528
var oop = require("../lib/oop");
529
var lang = require("../lib/lang");
530
var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
531
var supportType = exports.supportType = "align-content|align-items|align-self|all|animation|animation-delay|animation-direction|animation-duration|animation-fill-mode|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|backface-visibility|background|background-attachment|background-blend-mode|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|border|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|bottom|box-shadow|box-sizing|caption-side|clear|clip|color|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|column-span|column-width|columns|content|counter-increment|counter-reset|cursor|direction|display|empty-cells|filter|flex|flex-basis|flex-direction|flex-flow|flex-grow|flex-shrink|flex-wrap|float|font|font-family|font-size|font-size-adjust|font-stretch|font-style|font-variant|font-weight|hanging-punctuation|height|justify-content|left|letter-spacing|line-height|list-style|list-style-image|list-style-position|list-style-type|margin|margin-bottom|margin-left|margin-right|margin-top|max-height|max-width|max-zoom|min-height|min-width|min-zoom|nav-down|nav-index|nav-left|nav-right|nav-up|opacity|order|outline|outline-color|outline-offset|outline-style|outline-width|overflow|overflow-x|overflow-y|padding|padding-bottom|padding-left|padding-right|padding-top|page-break-after|page-break-before|page-break-inside|perspective|perspective-origin|position|quotes|resize|right|tab-size|table-layout|text-align|text-align-last|text-decoration|text-decoration-color|text-decoration-line|text-decoration-style|text-indent|text-justify|text-overflow|text-shadow|text-transform|top|transform|transform-origin|transform-style|transition|transition-delay|transition-duration|transition-property|transition-timing-function|unicode-bidi|user-select|user-zoom|vertical-align|visibility|white-space|width|word-break|word-spacing|word-wrap|z-index";
532
var supportFunction = exports.supportFunction = "rgb|rgba|url|attr|counter|counters";
533
var supportConstant = exports.supportConstant = "absolute|after-edge|after|all-scroll|all|alphabetic|always|antialiased|armenian|auto|avoid-column|avoid-page|avoid|balance|baseline|before-edge|before|below|bidi-override|block-line-height|block|bold|bolder|border-box|both|bottom|box|break-all|break-word|capitalize|caps-height|caption|center|central|char|circle|cjk-ideographic|clone|close-quote|col-resize|collapse|column|consider-shifts|contain|content-box|cover|crosshair|cubic-bezier|dashed|decimal-leading-zero|decimal|default|disabled|disc|disregard-shifts|distribute-all-lines|distribute-letter|distribute-space|distribute|dotted|double|e-resize|ease-in|ease-in-out|ease-out|ease|ellipsis|end|exclude-ruby|fill|fixed|georgian|glyphs|grid-height|groove|hand|hanging|hebrew|help|hidden|hiragana-iroha|hiragana|horizontal|icon|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space|ideographic|inactive|include-ruby|inherit|initial|inline-block|inline-box|inline-line-height|inline-table|inline|inset|inside|inter-ideograph|inter-word|invert|italic|justify|katakana-iroha|katakana|keep-all|last|left|lighter|line-edge|line-through|line|linear|list-item|local|loose|lower-alpha|lower-greek|lower-latin|lower-roman|lowercase|lr-tb|ltr|mathematical|max-height|max-size|medium|menu|message-box|middle|move|n-resize|ne-resize|newspaper|no-change|no-close-quote|no-drop|no-open-quote|no-repeat|none|normal|not-allowed|nowrap|nw-resize|oblique|open-quote|outset|outside|overline|padding-box|page|pointer|pre-line|pre-wrap|pre|preserve-3d|progress|relative|repeat-x|repeat-y|repeat|replaced|reset-size|ridge|right|round|row-resize|rtl|s-resize|scroll|se-resize|separate|slice|small-caps|small-caption|solid|space|square|start|static|status-bar|step-end|step-start|steps|stretch|strict|sub|super|sw-resize|table-caption|table-cell|table-column-group|table-column|table-footer-group|table-header-group|table-row-group|table-row|table|tb-rl|text-after-edge|text-before-edge|text-bottom|text-size|text-top|text|thick|thin|transparent|underline|upper-alpha|upper-latin|upper-roman|uppercase|use-script|vertical-ideographic|vertical-text|visible|w-resize|wait|whitespace|z-index|zero|zoom";
534
var supportConstantColor = exports.supportConstantColor = "aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|rebeccapurple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen";
535
var supportConstantFonts = exports.supportConstantFonts = "arial|century|comic|courier|cursive|fantasy|garamond|georgia|helvetica|impact|lucida|symbol|system|tahoma|times|trebuchet|utopia|verdana|webdings|sans-serif|serif|monospace";
536

    
537
var numRe = exports.numRe = "\\-?(?:(?:[0-9]+(?:\\.[0-9]+)?)|(?:\\.[0-9]+))";
538
var pseudoElements = exports.pseudoElements = "(\\:+)\\b(after|before|first-letter|first-line|moz-selection|selection)\\b";
539
var pseudoClasses  = exports.pseudoClasses =  "(:)\\b(active|checked|disabled|empty|enabled|first-child|first-of-type|focus|hover|indeterminate|invalid|last-child|last-of-type|link|not|nth-child|nth-last-child|nth-last-of-type|nth-of-type|only-child|only-of-type|required|root|target|valid|visited)\\b";
540

    
541
var CssHighlightRules = function() {
542

    
543
    var keywordMapper = this.createKeywordMapper({
544
        "support.function": supportFunction,
545
        "support.constant": supportConstant,
546
        "support.type": supportType,
547
        "support.constant.color": supportConstantColor,
548
        "support.constant.fonts": supportConstantFonts
549
    }, "text", true);
550

    
551
    this.$rules = {
552
        "start" : [{
553
            include : ["strings", "url", "comments"]
554
        }, {
555
            token: "paren.lparen",
556
            regex: "\\{",
557
            next:  "ruleset"
558
        }, {
559
            token: "paren.rparen",
560
            regex: "\\}"
561
        }, {
562
            token: "string",
563
            regex: "@(?!viewport)",
564
            next:  "media"
565
        }, {
566
            token: "keyword",
567
            regex: "#[a-z0-9-_]+"
568
        }, {
569
            token: "keyword",
570
            regex: "%"
571
        }, {
572
            token: "variable",
573
            regex: "\\.[a-z0-9-_]+"
574
        }, {
575
            token: "string",
576
            regex: ":[a-z0-9-_]+"
577
        }, {
578
            token : "constant.numeric",
579
            regex : numRe
580
        }, {
581
            token: "constant",
582
            regex: "[a-z0-9-_]+"
583
        }, {
584
            caseInsensitive: true
585
        }],
586

    
587
        "media": [{
588
            include : ["strings", "url", "comments"]
589
        }, {
590
            token: "paren.lparen",
591
            regex: "\\{",
592
            next:  "start"
593
        }, {
594
            token: "paren.rparen",
595
            regex: "\\}",
596
            next:  "start"
597
        }, {
598
            token: "string",
599
            regex: ";",
600
            next:  "start"
601
        }, {
602
            token: "keyword",
603
            regex: "(?:media|supports|document|charset|import|namespace|media|supports|document"
604
                + "|page|font|keyframes|viewport|counter-style|font-feature-values"
605
                + "|swash|ornaments|annotation|stylistic|styleset|character-variant)"
606
        }],
607

    
608
        "comments" : [{
609
            token: "comment", // multi line comment
610
            regex: "\\/\\*",
611
            push: [{
612
                token : "comment",
613
                regex : "\\*\\/",
614
                next : "pop"
615
            }, {
616
                defaultToken : "comment"
617
            }]
618
        }],
619

    
620
        "ruleset" : [{
621
            regex : "-(webkit|ms|moz|o)-",
622
            token : "text"
623
        }, {
624
            token : "punctuation.operator",
625
            regex : "[:;]"
626
        }, {
627
            token : "paren.rparen",
628
            regex : "\\}",
629
            next : "start"
630
        }, {
631
            include : ["strings", "url", "comments"]
632
        }, {
633
            token : ["constant.numeric", "keyword"],
634
            regex : "(" + numRe + ")(ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vmax|vmin|vm|vw|%)"
635
        }, {
636
            token : "constant.numeric",
637
            regex : numRe
638
        }, {
639
            token : "constant.numeric",  // hex6 color
640
            regex : "#[a-f0-9]{6}"
641
        }, {
642
            token : "constant.numeric", // hex3 color
643
            regex : "#[a-f0-9]{3}"
644
        }, {
645
            token : ["punctuation", "entity.other.attribute-name.pseudo-element.css"],
646
            regex : pseudoElements
647
        }, {
648
            token : ["punctuation", "entity.other.attribute-name.pseudo-class.css"],
649
            regex : pseudoClasses
650
        }, {
651
            include: "url"
652
        }, {
653
            token : keywordMapper,
654
            regex : "\\-?[a-zA-Z_][a-zA-Z0-9_\\-]*"
655
        }, {
656
            caseInsensitive: true
657
        }],
658

    
659
        url: [{
660
            token : "support.function",
661
            regex : "(?:url(:?-prefix)?|domain|regexp)\\(",
662
            push: [{
663
                token : "support.function",
664
                regex : "\\)",
665
                next : "pop"
666
            }, {
667
                defaultToken: "string"
668
            }]
669
        }],
670

    
671
        strings: [{
672
            token : "string.start",
673
            regex : "'",
674
            push : [{
675
                token : "string.end",
676
                regex : "'|$",
677
                next: "pop"
678
            }, {
679
                include : "escapes"
680
            }, {
681
                token : "constant.language.escape",
682
                regex : /\\$/,
683
                consumeLineEnd: true
684
            }, {
685
                defaultToken: "string"
686
            }]
687
        }, {
688
            token : "string.start",
689
            regex : '"',
690
            push : [{
691
                token : "string.end",
692
                regex : '"|$',
693
                next: "pop"
694
            }, {
695
                include : "escapes"
696
            }, {
697
                token : "constant.language.escape",
698
                regex : /\\$/,
699
                consumeLineEnd: true
700
            }, {
701
                defaultToken: "string"
702
            }]
703
        }],
704
        escapes: [{
705
            token : "constant.language.escape",
706
            regex : /\\([a-fA-F\d]{1,6}|[^a-fA-F\d])/
707
        }]
708

    
709
    };
710

    
711
    this.normalizeRules();
712
};
713

    
714
oop.inherits(CssHighlightRules, TextHighlightRules);
715

    
716
exports.CssHighlightRules = CssHighlightRules;
717

    
718
});
719

    
720
ace.define("ace/mode/xml_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"], function(require, exports, module) {
721
"use strict";
722

    
723
var oop = require("../lib/oop");
724
var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
725

    
726
var XmlHighlightRules = function(normalize) {
727
    var tagRegex = "[_:a-zA-Z\xc0-\uffff][-_:.a-zA-Z0-9\xc0-\uffff]*";
728

    
729
    this.$rules = {
730
        start : [
731
            {token : "string.cdata.xml", regex : "<\\!\\[CDATA\\[", next : "cdata"},
732
            {
733
                token : ["punctuation.instruction.xml", "keyword.instruction.xml"],
734
                regex : "(<\\?)(" + tagRegex + ")", next : "processing_instruction"
735
            },
736
            {token : "comment.start.xml", regex : "<\\!--", next : "comment"},
737
            {
738
                token : ["xml-pe.doctype.xml", "xml-pe.doctype.xml"],
739
                regex : "(<\\!)(DOCTYPE)(?=[\\s])", next : "doctype", caseInsensitive: true
740
            },
741
            {include : "tag"},
742
            {token : "text.end-tag-open.xml", regex: "</"},
743
            {token : "text.tag-open.xml", regex: "<"},
744
            {include : "reference"},
745
            {defaultToken : "text.xml"}
746
        ],
747

    
748
        processing_instruction : [{
749
            token : "entity.other.attribute-name.decl-attribute-name.xml",
750
            regex : tagRegex
751
        }, {
752
            token : "keyword.operator.decl-attribute-equals.xml",
753
            regex : "="
754
        }, {
755
            include: "whitespace"
756
        }, {
757
            include: "string"
758
        }, {
759
            token : "punctuation.xml-decl.xml",
760
            regex : "\\?>",
761
            next : "start"
762
        }],
763

    
764
        doctype : [
765
            {include : "whitespace"},
766
            {include : "string"},
767
            {token : "xml-pe.doctype.xml", regex : ">", next : "start"},
768
            {token : "xml-pe.xml", regex : "[-_a-zA-Z0-9:]+"},
769
            {token : "punctuation.int-subset", regex : "\\[", push : "int_subset"}
770
        ],
771

    
772
        int_subset : [{
773
            token : "text.xml",
774
            regex : "\\s+"
775
        }, {
776
            token: "punctuation.int-subset.xml",
777
            regex: "]",
778
            next: "pop"
779
        }, {
780
            token : ["punctuation.markup-decl.xml", "keyword.markup-decl.xml"],
781
            regex : "(<\\!)(" + tagRegex + ")",
782
            push : [{
783
                token : "text",
784
                regex : "\\s+"
785
            },
786
            {
787
                token : "punctuation.markup-decl.xml",
788
                regex : ">",
789
                next : "pop"
790
            },
791
            {include : "string"}]
792
        }],
793

    
794
        cdata : [
795
            {token : "string.cdata.xml", regex : "\\]\\]>", next : "start"},
796
            {token : "text.xml", regex : "\\s+"},
797
            {token : "text.xml", regex : "(?:[^\\]]|\\](?!\\]>))+"}
798
        ],
799

    
800
        comment : [
801
            {token : "comment.end.xml", regex : "-->", next : "start"},
802
            {defaultToken : "comment.xml"}
803
        ],
804

    
805
        reference : [{
806
            token : "constant.language.escape.reference.xml",
807
            regex : "(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\.-]+;)"
808
        }],
809

    
810
        attr_reference : [{
811
            token : "constant.language.escape.reference.attribute-value.xml",
812
            regex : "(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\.-]+;)"
813
        }],
814

    
815
        tag : [{
816
            token : ["meta.tag.punctuation.tag-open.xml", "meta.tag.punctuation.end-tag-open.xml", "meta.tag.tag-name.xml"],
817
            regex : "(?:(<)|(</))((?:" + tagRegex + ":)?" + tagRegex + ")",
818
            next: [
819
                {include : "attributes"},
820
                {token : "meta.tag.punctuation.tag-close.xml", regex : "/?>", next : "start"}
821
            ]
822
        }],
823

    
824
        tag_whitespace : [
825
            {token : "text.tag-whitespace.xml", regex : "\\s+"}
826
        ],
827
        whitespace : [
828
            {token : "text.whitespace.xml", regex : "\\s+"}
829
        ],
830
        string: [{
831
            token : "string.xml",
832
            regex : "'",
833
            push : [
834
                {token : "string.xml", regex: "'", next: "pop"},
835
                {defaultToken : "string.xml"}
836
            ]
837
        }, {
838
            token : "string.xml",
839
            regex : '"',
840
            push : [
841
                {token : "string.xml", regex: '"', next: "pop"},
842
                {defaultToken : "string.xml"}
843
            ]
844
        }],
845

    
846
        attributes: [{
847
            token : "entity.other.attribute-name.xml",
848
            regex : tagRegex
849
        }, {
850
            token : "keyword.operator.attribute-equals.xml",
851
            regex : "="
852
        }, {
853
            include: "tag_whitespace"
854
        }, {
855
            include: "attribute_value"
856
        }],
857

    
858
        attribute_value: [{
859
            token : "string.attribute-value.xml",
860
            regex : "'",
861
            push : [
862
                {token : "string.attribute-value.xml", regex: "'", next: "pop"},
863
                {include : "attr_reference"},
864
                {defaultToken : "string.attribute-value.xml"}
865
            ]
866
        }, {
867
            token : "string.attribute-value.xml",
868
            regex : '"',
869
            push : [
870
                {token : "string.attribute-value.xml", regex: '"', next: "pop"},
871
                {include : "attr_reference"},
872
                {defaultToken : "string.attribute-value.xml"}
873
            ]
874
        }]
875
    };
876

    
877
    if (this.constructor === XmlHighlightRules)
878
        this.normalizeRules();
879
};
880

    
881

    
882
(function() {
883

    
884
    this.embedTagRules = function(HighlightRules, prefix, tag){
885
        this.$rules.tag.unshift({
886
            token : ["meta.tag.punctuation.tag-open.xml", "meta.tag." + tag + ".tag-name.xml"],
887
            regex : "(<)(" + tag + "(?=\\s|>|$))",
888
            next: [
889
                {include : "attributes"},
890
                {token : "meta.tag.punctuation.tag-close.xml", regex : "/?>", next : prefix + "start"}
891
            ]
892
        });
893

    
894
        this.$rules[tag + "-end"] = [
895
            {include : "attributes"},
896
            {token : "meta.tag.punctuation.tag-close.xml", regex : "/?>",  next: "start",
897
                onMatch : function(value, currentState, stack) {
898
                    stack.splice(0);
899
                    return this.token;
900
            }}
901
        ];
902

    
903
        this.embedRules(HighlightRules, prefix, [{
904
            token: ["meta.tag.punctuation.end-tag-open.xml", "meta.tag." + tag + ".tag-name.xml"],
905
            regex : "(</)(" + tag + "(?=\\s|>|$))",
906
            next: tag + "-end"
907
        }, {
908
            token: "string.cdata.xml",
909
            regex : "<\\!\\[CDATA\\["
910
        }, {
911
            token: "string.cdata.xml",
912
            regex : "\\]\\]>"
913
        }]);
914
    };
915

    
916
}).call(TextHighlightRules.prototype);
917

    
918
oop.inherits(XmlHighlightRules, TextHighlightRules);
919

    
920
exports.XmlHighlightRules = XmlHighlightRules;
921
});
922

    
923
ace.define("ace/mode/html_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/css_highlight_rules","ace/mode/javascript_highlight_rules","ace/mode/xml_highlight_rules"], function(require, exports, module) {
924
"use strict";
925

    
926
var oop = require("../lib/oop");
927
var lang = require("../lib/lang");
928
var CssHighlightRules = require("./css_highlight_rules").CssHighlightRules;
929
var JavaScriptHighlightRules = require("./javascript_highlight_rules").JavaScriptHighlightRules;
930
var XmlHighlightRules = require("./xml_highlight_rules").XmlHighlightRules;
931

    
932
var tagMap = lang.createMap({
933
    a           : 'anchor',
934
    button 	    : 'form',
935
    form        : 'form',
936
    img         : 'image',
937
    input       : 'form',
938
    label       : 'form',
939
    option      : 'form',
940
    script      : 'script',
941
    select      : 'form',
942
    textarea    : 'form',
943
    style       : 'style',
944
    table       : 'table',
945
    tbody       : 'table',
946
    td          : 'table',
947
    tfoot       : 'table',
948
    th          : 'table',
949
    tr          : 'table'
950
});
951

    
952
var HtmlHighlightRules = function() {
953
    XmlHighlightRules.call(this);
954

    
955
    this.addRules({
956
        attributes: [{
957
            include : "tag_whitespace"
958
        }, {
959
            token : "entity.other.attribute-name.xml",
960
            regex : "[-_a-zA-Z0-9:.]+"
961
        }, {
962
            token : "keyword.operator.attribute-equals.xml",
963
            regex : "=",
964
            push : [{
965
                include: "tag_whitespace"
966
            }, {
967
                token : "string.unquoted.attribute-value.html",
968
                regex : "[^<>='\"`\\s]+",
969
                next : "pop"
970
            }, {
971
                token : "empty",
972
                regex : "",
973
                next : "pop"
974
            }]
975
        }, {
976
            include : "attribute_value"
977
        }],
978
        tag: [{
979
            token : function(start, tag) {
980
                var group = tagMap[tag];
981
                return ["meta.tag.punctuation." + (start == "<" ? "" : "end-") + "tag-open.xml",
982
                    "meta.tag" + (group ? "." + group : "") + ".tag-name.xml"];
983
            },
984
            regex : "(</?)([-_a-zA-Z0-9:.]+)",
985
            next: "tag_stuff"
986
        }],
987
        tag_stuff: [
988
            {include : "attributes"},
989
            {token : "meta.tag.punctuation.tag-close.xml", regex : "/?>", next : "start"}
990
        ]
991
    });
992

    
993
    this.embedTagRules(CssHighlightRules, "css-", "style");
994
    this.embedTagRules(new JavaScriptHighlightRules({jsx: false}).getRules(), "js-", "script");
995

    
996
    if (this.constructor === HtmlHighlightRules)
997
        this.normalizeRules();
998
};
999

    
1000
oop.inherits(HtmlHighlightRules, XmlHighlightRules);
1001

    
1002
exports.HtmlHighlightRules = HtmlHighlightRules;
1003
});
1004

    
1005
ace.define("ace/mode/markdown_highlight_rules",["require","exports","module","ace/config","ace/lib/oop","ace/lib/lang","ace/mode/text_highlight_rules","ace/mode/html_highlight_rules"], function(require, exports, module) {
1006
"use strict";
1007

    
1008
var modes = require("../config").$modes;
1009

    
1010
var oop = require("../lib/oop");
1011
var lang = require("../lib/lang");
1012
var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
1013
var HtmlHighlightRules = require("./html_highlight_rules").HtmlHighlightRules;
1014

    
1015
var escaped = function(ch) {
1016
    return "(?:[^" + lang.escapeRegExp(ch) + "\\\\]|\\\\.)*";
1017
};
1018

    
1019
var MarkdownHighlightRules = function() {
1020
    HtmlHighlightRules.call(this);
1021
    var codeBlockStartRule = {
1022
        token : "support.function",
1023
        regex : /^\s*(```+[^`]*|~~~+[^~]*)$/,
1024
        onMatch: function(value, state, stack, line) {
1025
            var m = value.match(/^(\s*)([`~]+)(.*)/);
1026
            var language = /[\w-]+|$/.exec(m[3])[0];
1027
            if (!modes[language])
1028
                language = "";
1029
            stack.unshift("githubblock", [], [m[1], m[2], language], state);
1030
            return this.token;
1031
        },
1032
        next  : "githubblock"
1033
    };
1034
    var codeBlockRules = [{
1035
        token : "support.function",
1036
        regex : ".*",
1037
        onMatch: function(value, state, stack, line) {
1038
            var embedState = stack[1];
1039
            var indent = stack[2][0];
1040
            var endMarker = stack[2][1];
1041
            var language = stack[2][2];
1042
            
1043
            var m = /^(\s*)(`+|~+)\s*$/.exec(value);
1044
            if (
1045
                m && m[1].length < indent.length + 3
1046
                && m[2].length >= endMarker.length && m[2][0] == endMarker[0]
1047
            ) {
1048
                stack.splice(0, 3);
1049
                this.next = stack.shift();
1050
                return this.token;
1051
            }
1052
            this.next = "";
1053
            if (language && modes[language]) {
1054
                var data = modes[language].getTokenizer().getLineTokens(value, embedState.slice(0));
1055
                stack[1] = data.state;
1056
                return data.tokens;
1057
            }
1058
            return this.token;
1059
        }
1060
    }];
1061

    
1062
    this.$rules["start"].unshift({
1063
        token : "empty_line",
1064
        regex : '^$',
1065
        next: "allowBlock"
1066
    }, { // h1
1067
        token: "markup.heading.1",
1068
        regex: "^=+(?=\\s*$)"
1069
    }, { // h2
1070
        token: "markup.heading.2",
1071
        regex: "^\\-+(?=\\s*$)"
1072
    }, {
1073
        token : function(value) {
1074
            return "markup.heading." + value.length;
1075
        },
1076
        regex : /^#{1,6}(?=\s|$)/,
1077
        next : "header"
1078
    },
1079
    codeBlockStartRule,
1080
    { // block quote
1081
        token : "string.blockquote",
1082
        regex : "^\\s*>\\s*(?:[*+-]|\\d+\\.)?\\s+",
1083
        next  : "blockquote"
1084
    }, { // HR * - _
1085
        token : "constant",
1086
        regex : "^ {0,3}(?:(?:\\* ?){3,}|(?:\\- ?){3,}|(?:\\_ ?){3,})\\s*$",
1087
        next: "allowBlock"
1088
    }, { // list
1089
        token : "markup.list",
1090
        regex : "^\\s{0,3}(?:[*+-]|\\d+\\.)\\s+",
1091
        next  : "listblock-start"
1092
    }, {
1093
        include : "basic"
1094
    });
1095

    
1096
    this.addRules({
1097
        "basic" : [{
1098
            token : "constant.language.escape",
1099
            regex : /\\[\\`*_{}\[\]()#+\-.!]/
1100
        }, { // code span `
1101
            token : "support.function",
1102
            regex : "(`+)(.*?[^`])(\\1)"
1103
        }, { // reference
1104
            token : ["text", "constant", "text", "url", "string", "text"],
1105
            regex : "^([ ]{0,3}\\[)([^\\]]+)(\\]:\\s*)([^ ]+)(\\s*(?:[\"][^\"]+[\"])?(\\s*))$"
1106
        }, { // link by reference
1107
            token : ["text", "string", "text", "constant", "text"],
1108
            regex : "(\\[)(" + escaped("]") + ")(\\]\\s*\\[)("+ escaped("]") + ")(\\])"
1109
        }, { // link by url
1110
            token : ["text", "string", "text", "markup.underline", "string", "text"],
1111
            regex : "(\\!?\\[)(" +                                        // [
1112
                    escaped("]") +                                    // link text or alt text
1113
                    ")(\\]\\()"+                                      // ](
1114
                    '((?:[^\\)\\s\\\\]|\\\\.|\\s(?=[^"]))*)' +        // href or image
1115
                    '(\\s*"' +  escaped('"') + '"\\s*)?' +            // "title"
1116
                    "(\\))"                                           // )
1117
        }, { // strong ** __
1118
            token : "string.strong",
1119
            regex : "([*]{2}|[_]{2}(?=\\S))(.*?\\S[*_]*)(\\1)"
1120
        }, { // emphasis * _
1121
            token : "string.emphasis",
1122
            regex : "([*]|[_](?=\\S))(.*?\\S[*_]*)(\\1)"
1123
        }, { //
1124
            token : ["text", "url", "text"],
1125
            regex : "(<)("+
1126
                      "(?:https?|ftp|dict):[^'\">\\s]+"+
1127
                      "|"+
1128
                      "(?:mailto:)?[-.\\w]+\\@[-a-z0-9]+(?:\\.[-a-z0-9]+)*\\.[a-z]+"+
1129
                    ")(>)"
1130
        }],
1131
        "allowBlock": [
1132
            {token : "support.function", regex : "^ {4}.+", next : "allowBlock"},
1133
            {token : "empty_line", regex : '^$', next: "allowBlock"},
1134
            {token : "empty", regex : "", next : "start"}
1135
        ],
1136

    
1137
        "header" : [{
1138
            regex: "$",
1139
            next : "start"
1140
        }, {
1141
            include: "basic"
1142
        }, {
1143
            defaultToken : "heading"
1144
        } ],
1145

    
1146
        "listblock-start" : [{
1147
            token : "support.variable",
1148
            regex : /(?:\[[ x]\])?/,
1149
            next  : "listblock"
1150
        }],
1151

    
1152
        "listblock" : [ { // Lists only escape on completely blank lines.
1153
            token : "empty_line",
1154
            regex : "^$",
1155
            next  : "start"
1156
        }, { // list
1157
            token : "markup.list",
1158
            regex : "^\\s{0,3}(?:[*+-]|\\d+\\.)\\s+",
1159
            next  : "listblock-start"
1160
        }, {
1161
            include : "basic", noEscape: true
1162
        },
1163
        codeBlockStartRule,
1164
        {
1165
            defaultToken : "list" //do not use markup.list to allow stling leading `*` differntly
1166
        } ],
1167

    
1168
        "blockquote" : [ { // Blockquotes only escape on blank lines.
1169
            token : "empty_line",
1170
            regex : "^\\s*$",
1171
            next  : "start"
1172
        }, { // block quote
1173
            token : "string.blockquote",
1174
            regex : "^\\s*>\\s*(?:[*+-]|\\d+\\.)?\\s+",
1175
            next  : "blockquote"
1176
        }, {
1177
            include : "basic", noEscape: true
1178
        }, {
1179
            defaultToken : "string.blockquote"
1180
        } ],
1181

    
1182
        "githubblock" : codeBlockRules
1183
    });
1184

    
1185
    this.normalizeRules();
1186
};
1187
oop.inherits(MarkdownHighlightRules, TextHighlightRules);
1188

    
1189
exports.MarkdownHighlightRules = MarkdownHighlightRules;
1190
});
1191

    
1192
ace.define("ace/mode/mask_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text_highlight_rules","ace/mode/javascript_highlight_rules","ace/mode/css_highlight_rules","ace/mode/markdown_highlight_rules","ace/mode/html_highlight_rules"], function(require, exports, module) {
1193
"use strict";
1194

    
1195
exports.MaskHighlightRules = MaskHighlightRules;
1196

    
1197
var oop = require("../lib/oop");
1198
var lang = require("../lib/lang");
1199
var TextRules   = require("./text_highlight_rules").TextHighlightRules;
1200
var JSRules     = require("./javascript_highlight_rules").JavaScriptHighlightRules;
1201
var CssRules    = require("./css_highlight_rules").CssHighlightRules;
1202
var MDRules     = require("./markdown_highlight_rules").MarkdownHighlightRules;
1203
var HTMLRules   = require("./html_highlight_rules").HtmlHighlightRules;
1204

    
1205
var token_TAG       = "keyword.support.constant.language",
1206
    token_COMPO     = "support.function.markup.bold",
1207
    token_KEYWORD   = "keyword",
1208
    token_LANG      = "constant.language",
1209
    token_UTIL      = "keyword.control.markup.italic",
1210
    token_ATTR      = "support.variable.class",
1211
    token_PUNKT     = "keyword.operator",
1212
    token_ITALIC    = "markup.italic",
1213
    token_BOLD      = "markup.bold",
1214
    token_LPARE     = "paren.lparen",
1215
    token_RPARE     = "paren.rparen";
1216

    
1217
var const_FUNCTIONS,
1218
    const_KEYWORDS,
1219
    const_CONST,
1220
    const_TAGS;
1221
(function(){
1222
    const_FUNCTIONS = lang.arrayToMap(
1223
        ("log").split("|")
1224
    );
1225
    const_CONST = lang.arrayToMap(
1226
        (":dualbind|:bind|:import|slot|event|style|html|markdown|md").split("|")
1227
    );
1228
    const_KEYWORDS = lang.arrayToMap(
1229
        ("debugger|define|var|if|each|for|of|else|switch|case|with|visible|+if|+each|+for|+switch|+with|+visible|include|import").split("|")
1230
    );
1231
    const_TAGS = lang.arrayToMap(
1232
        ("a|abbr|acronym|address|applet|area|article|aside|audio|b|base|basefont|bdo|" + 
1233
         "big|blockquote|body|br|button|canvas|caption|center|cite|code|col|colgroup|" + 
1234
         "command|datalist|dd|del|details|dfn|dir|div|dl|dt|em|embed|fieldset|" + 
1235
         "figcaption|figure|font|footer|form|frame|frameset|h1|h2|h3|h4|h5|h6|head|" + 
1236
         "header|hgroup|hr|html|i|iframe|img|input|ins|keygen|kbd|label|legend|li|" + 
1237
         "link|map|mark|menu|meta|meter|nav|noframes|noscript|object|ol|optgroup|" + 
1238
         "option|output|p|param|pre|progress|q|rp|rt|ruby|s|samp|script|section|select|" + 
1239
         "small|source|span|strike|strong|style|sub|summary|sup|table|tbody|td|" + 
1240
         "textarea|tfoot|th|thead|time|title|tr|tt|u|ul|var|video|wbr|xmp").split("|")
1241
    );
1242
}());
1243

    
1244
function MaskHighlightRules () {
1245

    
1246
    this.$rules = {
1247
        "start" : [
1248
            Token("comment", "\\/\\/.*$"),
1249
            Token("comment", "\\/\\*", [
1250
                Token("comment", ".*?\\*\\/", "start"),
1251
                Token("comment", ".+")
1252
            ]),
1253
            
1254
            Blocks.string("'''"),
1255
            Blocks.string('"""'),
1256
            Blocks.string('"'),
1257
            Blocks.string("'"),
1258
            
1259
            Blocks.syntax(/(markdown|md)\b/, "md-multiline", "multiline"),
1260
            Blocks.syntax(/html\b/, "html-multiline", "multiline"),
1261
            Blocks.syntax(/(slot|event)\b/, "js-block", "block"),
1262
            Blocks.syntax(/style\b/, "css-block", "block"),
1263
            Blocks.syntax(/var\b/, "js-statement", "attr"),
1264
            
1265
            Blocks.tag(),
1266
            
1267
            Token(token_LPARE, "[[({>]"),
1268
            Token(token_RPARE, "[\\])};]", "start"),
1269
            {
1270
                caseInsensitive: true
1271
            }
1272
        ]
1273
    };
1274
    var rules = this;
1275
    
1276
    addJavaScript("interpolation", /\]/, token_RPARE + "." + token_ITALIC);
1277
    addJavaScript("statement", /\)|}|;/);
1278
    addJavaScript("block", /\}/);
1279
    addCss();
1280
    addMarkdown();
1281
    addHtml();
1282
    
1283
    function addJavaScript(name, escape, closeType) {
1284
        var prfx  =  "js-" + name + "-",
1285
            rootTokens = name === "block" ? ["start"] : ["start", "no_regex"];
1286
        add(
1287
            JSRules
1288
            , prfx
1289
            , escape
1290
            , rootTokens
1291
            , closeType
1292
        );
1293
    }
1294
    function addCss() {
1295
        add(CssRules, "css-block-", /\}/);
1296
    }
1297
    function addMarkdown() {
1298
        add(MDRules, "md-multiline-", /("""|''')/, []);
1299
    }
1300
    function addHtml() {
1301
        add(HTMLRules, "html-multiline-", /("""|''')/);
1302
    }
1303
    function add(Rules, strPrfx, rgxEnd, rootTokens, closeType) {
1304
        var next = "pop";
1305
        var tokens = rootTokens || [ "start" ];
1306
        if (tokens.length === 0) {
1307
            tokens = null;
1308
        }
1309
        if (/block|multiline/.test(strPrfx)) {
1310
            next = strPrfx + "end";
1311
            rules.$rules[next] = [
1312
                Token("empty", "", "start")
1313
            ];
1314
        }
1315
        rules.embedRules(
1316
            Rules
1317
            , strPrfx
1318
            , [ Token(closeType || token_RPARE, rgxEnd, next) ]
1319
            , tokens
1320
            , tokens == null ? true : false
1321
        );
1322
    }
1323

    
1324
    this.normalizeRules();
1325
}
1326
oop.inherits(MaskHighlightRules, TextRules);
1327

    
1328
var Blocks = {
1329
    string: function(str, next){
1330
        var token = Token(
1331
            "string.start"
1332
            , str
1333
            , [
1334
                Token(token_LPARE + "." + token_ITALIC, /~\[/, Blocks.interpolation()),
1335
                Token("string.end", str, "pop"),
1336
                {
1337
                    defaultToken: "string"
1338
                }
1339
            ]
1340
            , next
1341
        );
1342
        if (str.length === 1){
1343
            var escaped = Token("string.escape", "\\\\" + str);
1344
            token.push.unshift(escaped);
1345
        }
1346
        return token;
1347
    },
1348
    interpolation: function(){
1349
        return [
1350
            Token(token_UTIL, /\s*\w*\s*:/),
1351
            "js-interpolation-start"
1352
        ];
1353
    },
1354
    tagHead: function (rgx) {
1355
      return Token(token_ATTR, rgx, [
1356
            Token(token_ATTR, /[\w\-_]+/),
1357
            Token(token_LPARE + "." + token_ITALIC, /~\[/, Blocks.interpolation()),
1358
            Blocks.goUp()
1359
        ]);
1360
    },
1361
    tag: function () {
1362
        return {
1363
            token: 'tag',
1364
            onMatch :  function(value) {
1365
                if (void 0 !== const_KEYWORDS[value])
1366
                    return token_KEYWORD;
1367
                if (void 0 !== const_CONST[value])
1368
                    return token_LANG;
1369
                if (void 0 !== const_FUNCTIONS[value])
1370
                    return "support.function";
1371
                if (void 0 !== const_TAGS[value.toLowerCase()])
1372
                    return token_TAG;
1373
                
1374
                return token_COMPO;
1375
            },
1376
            regex : /([@\w\-_:+]+)|((^|\s)(?=\s*(\.|#)))/,
1377
            push: [
1378
                Blocks.tagHead(/\./) ,
1379
                Blocks.tagHead(/#/) ,
1380
                Blocks.expression(),
1381
                Blocks.attribute(),
1382
                
1383
                Token(token_LPARE, /[;>{]/, "pop")
1384
            ]
1385
        };
1386
    },
1387
    syntax: function(rgx, next, type){
1388
        return {
1389
            token: token_LANG,
1390
            regex : rgx,
1391
            push: ({
1392
                "attr": [
1393
                    next + "-start",
1394
                    Token(token_PUNKT, /;/, "start")
1395
                ],
1396
                "multiline": [
1397
                    Blocks.tagHead(/\./) ,
1398
                    Blocks.tagHead(/#/) ,
1399
                    Blocks.attribute(),
1400
                    Blocks.expression(),
1401
                    Token(token_LPARE, /[>\{]/),
1402
                    Token(token_PUNKT, /;/, "start"),
1403
                    Token(token_LPARE, /'''|"""/, [ next + "-start" ])
1404
                ],
1405
                "block": [
1406
                    Blocks.tagHead(/\./) ,
1407
                    Blocks.tagHead(/#/) ,
1408
                    Blocks.attribute(),
1409
                    Blocks.expression(),
1410
                    Token(token_LPARE, /\{/, [ next + "-start" ])
1411
                ]
1412
            })[type]
1413
        };
1414
    },
1415
    attribute: function(){
1416
        return Token(function(value){
1417
            return  /^x\-/.test(value)
1418
                ? token_ATTR + "." + token_BOLD
1419
                : token_ATTR;
1420
        }, /[\w_-]+/, [
1421
            Token(token_PUNKT, /\s*=\s*/, [
1422
                Blocks.string('"'),
1423
                Blocks.string("'"),
1424
                Blocks.word(),
1425
                Blocks.goUp()
1426
            ]),
1427
            Blocks.goUp()
1428
        ]);
1429
    },
1430
    expression: function(){
1431
        return Token(token_LPARE, /\(/, [ "js-statement-start" ]);
1432
    },
1433
    word: function(){
1434
        return Token("string", /[\w-_]+/);
1435
    },
1436
    goUp: function(){
1437
        return Token("text", "", "pop");
1438
    },
1439
    goStart: function(){
1440
        return Token("text", "", "start");
1441
    }
1442
};
1443

    
1444

    
1445
function Token(token, rgx, mix) {
1446
    var push, next, onMatch;
1447
    if (arguments.length === 4) {
1448
        push = mix;
1449
        next = arguments[3];
1450
    }
1451
    else if (typeof mix === "string") {
1452
        next = mix;
1453
    }
1454
    else {
1455
        push = mix;
1456
    }
1457
    if (typeof token === "function") {
1458
        onMatch = token;
1459
        token   = "empty";
1460
    }
1461
    return {
1462
        token: token,
1463
        regex: rgx,
1464
        push: push,
1465
        next: next,
1466
        onMatch: onMatch
1467
    };
1468
}
1469

    
1470
});
1471

    
1472
ace.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"], function(require, exports, module) {
1473
"use strict";
1474

    
1475
var Range = require("../range").Range;
1476

    
1477
var MatchingBraceOutdent = function() {};
1478

    
1479
(function() {
1480

    
1481
    this.checkOutdent = function(line, input) {
1482
        if (! /^\s+$/.test(line))
1483
            return false;
1484

    
1485
        return /^\s*\}/.test(input);
1486
    };
1487

    
1488
    this.autoOutdent = function(doc, row) {
1489
        var line = doc.getLine(row);
1490
        var match = line.match(/^(\s*\})/);
1491

    
1492
        if (!match) return 0;
1493

    
1494
        var column = match[1].length;
1495
        var openBracePos = doc.findMatchingBracket({row: row, column: column});
1496

    
1497
        if (!openBracePos || openBracePos.row == row) return 0;
1498

    
1499
        var indent = this.$getIndent(doc.getLine(openBracePos.row));
1500
        doc.replace(new Range(row, 0, row, column-1), indent);
1501
    };
1502

    
1503
    this.$getIndent = function(line) {
1504
        return line.match(/^\s*/)[0];
1505
    };
1506

    
1507
}).call(MatchingBraceOutdent.prototype);
1508

    
1509
exports.MatchingBraceOutdent = MatchingBraceOutdent;
1510
});
1511

    
1512
ace.define("ace/mode/behaviour/css",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/mode/behaviour/cstyle","ace/token_iterator"], function(require, exports, module) {
1513
"use strict";
1514

    
1515
var oop = require("../../lib/oop");
1516
var Behaviour = require("../behaviour").Behaviour;
1517
var CstyleBehaviour = require("./cstyle").CstyleBehaviour;
1518
var TokenIterator = require("../../token_iterator").TokenIterator;
1519

    
1520
var CssBehaviour = function () {
1521

    
1522
    this.inherit(CstyleBehaviour);
1523

    
1524
    this.add("colon", "insertion", function (state, action, editor, session, text) {
1525
        if (text === ':' && editor.selection.isEmpty()) {
1526
            var cursor = editor.getCursorPosition();
1527
            var iterator = new TokenIterator(session, cursor.row, cursor.column);
1528
            var token = iterator.getCurrentToken();
1529
            if (token && token.value.match(/\s+/)) {
1530
                token = iterator.stepBackward();
1531
            }
1532
            if (token && token.type === 'support.type') {
1533
                var line = session.doc.getLine(cursor.row);
1534
                var rightChar = line.substring(cursor.column, cursor.column + 1);
1535
                if (rightChar === ':') {
1536
                    return {
1537
                       text: '',
1538
                       selection: [1, 1]
1539
                    };
1540
                }
1541
                if (/^(\s+[^;]|\s*$)/.test(line.substring(cursor.column))) {
1542
                    return {
1543
                       text: ':;',
1544
                       selection: [1, 1]
1545
                    };
1546
                }
1547
            }
1548
        }
1549
    });
1550

    
1551
    this.add("colon", "deletion", function (state, action, editor, session, range) {
1552
        var selected = session.doc.getTextRange(range);
1553
        if (!range.isMultiLine() && selected === ':') {
1554
            var cursor = editor.getCursorPosition();
1555
            var iterator = new TokenIterator(session, cursor.row, cursor.column);
1556
            var token = iterator.getCurrentToken();
1557
            if (token && token.value.match(/\s+/)) {
1558
                token = iterator.stepBackward();
1559
            }
1560
            if (token && token.type === 'support.type') {
1561
                var line = session.doc.getLine(range.start.row);
1562
                var rightChar = line.substring(range.end.column, range.end.column + 1);
1563
                if (rightChar === ';') {
1564
                    range.end.column ++;
1565
                    return range;
1566
                }
1567
            }
1568
        }
1569
    });
1570

    
1571
    this.add("semicolon", "insertion", function (state, action, editor, session, text) {
1572
        if (text === ';' && editor.selection.isEmpty()) {
1573
            var cursor = editor.getCursorPosition();
1574
            var line = session.doc.getLine(cursor.row);
1575
            var rightChar = line.substring(cursor.column, cursor.column + 1);
1576
            if (rightChar === ';') {
1577
                return {
1578
                   text: '',
1579
                   selection: [1, 1]
1580
                };
1581
            }
1582
        }
1583
    });
1584

    
1585
    this.add("!important", "insertion", function (state, action, editor, session, text) {
1586
        if (text === '!' && editor.selection.isEmpty()) {
1587
            var cursor = editor.getCursorPosition();
1588
            var line = session.doc.getLine(cursor.row);
1589

    
1590
            if (/^\s*(;|}|$)/.test(line.substring(cursor.column))) {
1591
                return {
1592
                    text: '!important',
1593
                    selection: [10, 10]
1594
                };
1595
            }
1596
        }
1597
    });
1598

    
1599
};
1600
oop.inherits(CssBehaviour, CstyleBehaviour);
1601

    
1602
exports.CssBehaviour = CssBehaviour;
1603
});
1604

    
1605
ace.define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"], function(require, exports, module) {
1606
"use strict";
1607

    
1608
var oop = require("../../lib/oop");
1609
var Range = require("../../range").Range;
1610
var BaseFoldMode = require("./fold_mode").FoldMode;
1611

    
1612
var FoldMode = exports.FoldMode = function(commentRegex) {
1613
    if (commentRegex) {
1614
        this.foldingStartMarker = new RegExp(
1615
            this.foldingStartMarker.source.replace(/\|[^|]*?$/, "|" + commentRegex.start)
1616
        );
1617
        this.foldingStopMarker = new RegExp(
1618
            this.foldingStopMarker.source.replace(/\|[^|]*?$/, "|" + commentRegex.end)
1619
        );
1620
    }
1621
};
1622
oop.inherits(FoldMode, BaseFoldMode);
1623

    
1624
(function() {
1625
    
1626
    this.foldingStartMarker = /([\{\[\(])[^\}\]\)]*$|^\s*(\/\*)/;
1627
    this.foldingStopMarker = /^[^\[\{\(]*([\}\]\)])|^[\s\*]*(\*\/)/;
1628
    this.singleLineBlockCommentRe= /^\s*(\/\*).*\*\/\s*$/;
1629
    this.tripleStarBlockCommentRe = /^\s*(\/\*\*\*).*\*\/\s*$/;
1630
    this.startRegionRe = /^\s*(\/\*|\/\/)#?region\b/;
1631
    this._getFoldWidgetBase = this.getFoldWidget;
1632
    this.getFoldWidget = function(session, foldStyle, row) {
1633
        var line = session.getLine(row);
1634
    
1635
        if (this.singleLineBlockCommentRe.test(line)) {
1636
            if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))
1637
                return "";
1638
        }
1639
    
1640
        var fw = this._getFoldWidgetBase(session, foldStyle, row);
1641
    
1642
        if (!fw && this.startRegionRe.test(line))
1643
            return "start"; // lineCommentRegionStart
1644
    
1645
        return fw;
1646
    };
1647

    
1648
    this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {
1649
        var line = session.getLine(row);
1650
        
1651
        if (this.startRegionRe.test(line))
1652
            return this.getCommentRegionBlock(session, line, row);
1653
        
1654
        var match = line.match(this.foldingStartMarker);
1655
        if (match) {
1656
            var i = match.index;
1657

    
1658
            if (match[1])
1659
                return this.openingBracketBlock(session, match[1], row, i);
1660
                
1661
            var range = session.getCommentFoldRange(row, i + match[0].length, 1);
1662
            
1663
            if (range && !range.isMultiLine()) {
1664
                if (forceMultiline) {
1665
                    range = this.getSectionRange(session, row);
1666
                } else if (foldStyle != "all")
1667
                    range = null;
1668
            }
1669
            
1670
            return range;
1671
        }
1672

    
1673
        if (foldStyle === "markbegin")
1674
            return;
1675

    
1676
        var match = line.match(this.foldingStopMarker);
1677
        if (match) {
1678
            var i = match.index + match[0].length;
1679

    
1680
            if (match[1])
1681
                return this.closingBracketBlock(session, match[1], row, i);
1682

    
1683
            return session.getCommentFoldRange(row, i, -1);
1684
        }
1685
    };
1686
    
1687
    this.getSectionRange = function(session, row) {
1688
        var line = session.getLine(row);
1689
        var startIndent = line.search(/\S/);
1690
        var startRow = row;
1691
        var startColumn = line.length;
1692
        row = row + 1;
1693
        var endRow = row;
1694
        var maxRow = session.getLength();
1695
        while (++row < maxRow) {
1696
            line = session.getLine(row);
1697
            var indent = line.search(/\S/);
1698
            if (indent === -1)
1699
                continue;
1700
            if  (startIndent > indent)
1701
                break;
1702
            var subRange = this.getFoldWidgetRange(session, "all", row);
1703
            
1704
            if (subRange) {
1705
                if (subRange.start.row <= startRow) {
1706
                    break;
1707
                } else if (subRange.isMultiLine()) {
1708
                    row = subRange.end.row;
1709
                } else if (startIndent == indent) {
1710
                    break;
1711
                }
1712
            }
1713
            endRow = row;
1714
        }
1715
        
1716
        return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);
1717
    };
1718
    this.getCommentRegionBlock = function(session, line, row) {
1719
        var startColumn = line.search(/\s*$/);
1720
        var maxRow = session.getLength();
1721
        var startRow = row;
1722
        
1723
        var re = /^\s*(?:\/\*|\/\/|--)#?(end)?region\b/;
1724
        var depth = 1;
1725
        while (++row < maxRow) {
1726
            line = session.getLine(row);
1727
            var m = re.exec(line);
1728
            if (!m) continue;
1729
            if (m[1]) depth--;
1730
            else depth++;
1731

    
1732
            if (!depth) break;
1733
        }
1734

    
1735
        var endRow = row;
1736
        if (endRow > startRow) {
1737
            return new Range(startRow, startColumn, endRow, line.length);
1738
        }
1739
    };
1740

    
1741
}).call(FoldMode.prototype);
1742

    
1743
});
1744

    
1745
ace.define("ace/mode/mask",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/mask_highlight_rules","ace/mode/matching_brace_outdent","ace/mode/behaviour/css","ace/mode/folding/cstyle"], function(require, exports, module) {
1746
"use strict";
1747

    
1748
var oop = require("../lib/oop");
1749
var TextMode = require("./text").Mode;
1750
var MaskHighlightRules = require("./mask_highlight_rules").MaskHighlightRules;
1751
var MatchingBraceOutdent = require("./matching_brace_outdent").MatchingBraceOutdent;
1752
var CssBehaviour = require("./behaviour/css").CssBehaviour;
1753
var CStyleFoldMode = require("./folding/cstyle").FoldMode;
1754

    
1755
var Mode = function() {
1756
    this.HighlightRules = MaskHighlightRules;
1757
    this.$outdent = new MatchingBraceOutdent();
1758
    this.$behaviour = new CssBehaviour();
1759
    this.foldingRules = new CStyleFoldMode();
1760
};
1761
oop.inherits(Mode, TextMode);
1762

    
1763
(function() {
1764
   
1765
    this.lineCommentStart = "//";
1766
    this.blockComment = {start: "/*", end: "*/"};
1767

    
1768
    this.getNextLineIndent = function(state, line, tab) {
1769
        var indent = this.$getIndent(line);
1770
        var tokens = this.getTokenizer().getLineTokens(line, state).tokens;
1771
        if (tokens.length && tokens[tokens.length-1].type == "comment") {
1772
            return indent;
1773
        }
1774

    
1775
        var match = line.match(/^.*\{\s*$/);
1776
        if (match) {
1777
            indent += tab;
1778
        }
1779

    
1780
        return indent;
1781
    };
1782

    
1783
    this.checkOutdent = function(state, line, input) {
1784
        return this.$outdent.checkOutdent(line, input);
1785
    };
1786

    
1787
    this.autoOutdent = function(state, doc, row) {
1788
        this.$outdent.autoOutdent(doc, row);
1789
    };
1790

    
1791
    this.$id = "ace/mode/mask";
1792
}).call(Mode.prototype);
1793

    
1794
exports.Mode = Mode;
1795

    
1796
});                (function() {
1797
                    ace.require(["ace/mode/mask"], function(m) {
1798
                        if (typeof module == "object" && typeof exports == "object" && module) {
1799
                            module.exports = m;
1800
                        }
1801
                    });
1802
                })();
1803
            
(118-118/244)