Skip to content

Commit ec2268a

Browse files
committed
corrected GMQL mode javascript
1 parent 238f7f9 commit ec2268a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

lib/ace/mode/gmql_highlight_rules.js

+8
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,14 @@ var GmqlHighlightRules = function() {
7777
"storage.type": dataTypes
7878
}, "identifier", true);
7979

80+
var escapedRe = "\\\\(?:x[0-9a-fA-F]{2}|" + // hex
81+
"u[0-9a-fA-F]{4}|" + // unicode
82+
"[0-2][0-7]{0,2}|" + // oct
83+
"3[0-6][0-7]?|" + // oct
84+
"37[0-7]?|" + // oct
85+
"[4-7][0-7]?|" + //oct
86+
".)";
87+
8088
this.$rules = {
8189
"start" : [ {
8290
token : "comment",

0 commit comments

Comments
 (0)