Update ACE Editor to version 1.32.6

This commit is contained in:
Sebastian Serth
2024-02-13 14:46:36 +01:00
committed by Sebastian Serth
parent 0a473c7fd3
commit b00d45521b
481 changed files with 171566 additions and 125260 deletions

View File

@@ -1,73 +1,69 @@
define("ace/mode/properties_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"], function(require, exports, module) {
"use strict";
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 PropertiesHighlightRules = function () {
var escapeRe = /\\u[0-9a-fA-F]{4}|\\/;
this.$rules = {
"start" : [
"start": [
{
token : "comment",
regex : /[!#].*$/
token: "comment",
regex: /[!#].*$/
}, {
token : "keyword",
regex : /[=:]$/
token: "keyword",
regex: /[=:]$/
}, {
token : "keyword",
regex : /[=:]/,
next : "value"
token: "keyword",
regex: /[=:]/,
next: "value"
}, {
token : "constant.language.escape",
regex : escapeRe
token: "constant.language.escape",
regex: escapeRe
}, {
defaultToken: "variable"
}
],
"value" : [
"value": [
{
regex : /\\$/,
token : "string",
next : "value"
regex: /\\$/,
token: "string",
next: "value"
}, {
regex : /$/,
token : "string",
next : "start"
regex: /$/,
token: "string",
next: "start"
}, {
token : "constant.language.escape",
regex : escapeRe
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";
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() {
var Mode = function () {
this.HighlightRules = PropertiesHighlightRules;
this.$behaviour = this.$defaultBehaviour;
};
oop.inherits(Mode, TextMode);
(function() {
(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;
}
});
})();