1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
| define("ace/mode/properties_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"], function(require, exports, module) {
| "use strict";
|
| var oop = require("../lib/oop");
| var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
|
| var PropertiesHighlightRules = function() {
|
| var escapeRe = /\\u[0-9a-fA-F]{4}|\\/;
|
| this.$rules = {
| "start" : [
| {
| token : "comment",
| regex : /[!#].*$/
| }, {
| token : "keyword",
| regex : /[=:]$/
| }, {
| token : "keyword",
| regex : /[=:]/,
| next : "value"
| }, {
| token : "constant.language.escape",
| regex : escapeRe
| }, {
| defaultToken: "variable"
| }
| ],
| "value" : [
| {
| regex : /\\$/,
| token : "string",
| next : "value"
| }, {
| regex : /$/,
| token : "string",
| next : "start"
| }, {
| token : "constant.language.escape",
| regex : escapeRe
| }, {
| defaultToken: "string"
| }
| ]
| };
|
| };
|
| oop.inherits(PropertiesHighlightRules, TextHighlightRules);
|
| exports.PropertiesHighlightRules = PropertiesHighlightRules;
| });
|
| define("ace/mode/properties",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/properties_highlight_rules"], function(require, exports, module) {
| "use strict";
|
| var oop = require("../lib/oop");
| var TextMode = require("./text").Mode;
| var PropertiesHighlightRules = require("./properties_highlight_rules").PropertiesHighlightRules;
|
| var Mode = function() {
| this.HighlightRules = PropertiesHighlightRules;
| this.$behaviour = this.$defaultBehaviour;
| };
| oop.inherits(Mode, TextMode);
|
| (function() {
| this.$id = "ace/mode/properties";
| }).call(Mode.prototype);
|
| exports.Mode = Mode;
| });
| (function() {
| window.require(["ace/mode/properties"], function(m) {
| if (typeof module == "object" && typeof exports == "object" && module) {
| module.exports = m;
| }
| });
| })();
|
|
|