summaryrefslogtreecommitdiff
path: root/addons/web/static/lib/ace/javascript_highlight_rules.js
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/web/static/lib/ace/javascript_highlight_rules.js
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/web/static/lib/ace/javascript_highlight_rules.js')
-rw-r--r--addons/web/static/lib/ace/javascript_highlight_rules.js48
1 files changed, 48 insertions, 0 deletions
diff --git a/addons/web/static/lib/ace/javascript_highlight_rules.js b/addons/web/static/lib/ace/javascript_highlight_rules.js
new file mode 100644
index 00000000..8a8675b5
--- /dev/null
+++ b/addons/web/static/lib/ace/javascript_highlight_rules.js
@@ -0,0 +1,48 @@
+define("ace/mode/doc_comment_highlight_rules",["require","exports","module"], function(require, exports, module) {
+"use strict";
+
+var oop = require("../lib/oop");
+var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
+
+var DocCommentHighlightRules = function() {
+ this.$rules = {
+ "start" : [ {
+ token : "comment.doc.tag",
+ regex : "@[\\w\\d_]+" // TODO: fix email addresses
+ },
+ DocCommentHighlightRules.getTagRule(),
+ {
+ defaultToken : "comment.doc",
+ caseInsensitive: true
+ }]
+ };
+};
+
+oop.inherits(DocCommentHighlightRules, TextHighlightRules);
+
+DocCommentHighlightRules.getTagRule = function(start) {
+ return {
+ token : "comment.doc.tag.storage.type",
+ regex : "\\b(?:TODO|FIXME|XXX|HACK)\\b"
+ };
+};
+
+DocCommentHighlightRules.getStartRule = function(start) {
+ return {
+ token : "comment.doc", // doc comment
+ regex : "\\/\\*(?=\\*)",
+ next : start
+ };
+};
+
+DocCommentHighlightRules.getEndRule = function (start) {
+ return {
+ token : "comment.doc", // closing comment
+ regex : "\\*\\/",
+ next : start
+ };
+};
+
+exports.DocCommentHighlightRules = DocCommentHighlightRules;
+
+});