overleaf/services/web/public/js/ace-1.4.4/mode-properties.js
Alasdair Smith a3894ac9b4 Merge pull request #1794 from overleaf/as-upgrade-ace-1.4.4
Upgrade Ace to v1.4.4

GitOrigin-RevId: 26681bcf255537f8eb09fa0ac1c98009cf964496
2019-05-23 08:49:13 +00:00

81 lines
No EOL
2.2 KiB
JavaScript

ace.define("ace/mode/properties_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;
});
ace.define("ace/mode/properties",[], 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() {
ace.require(["ace/mode/properties"], function(m) {
if (typeof module == "object" && typeof exports == "object" && module) {
module.exports = m;
}
});
})();