-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathjack-mode.js
111 lines (106 loc) · 3.68 KB
/
jack-mode.js
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
define(function(require, exports, module) {
"use strict";
var oop = require("../lib/oop");
var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
var JackHighlightRules = function() {
// regexp must not have capturing parentheses. Use (?:) instead.
// regexps are ordered -> the first match is used
this.$rules = {
"start" : [
{
token : "string",
regex : '"',
next : "string2"
}, {
token : "string",
regex : "'",
next : "string1"
}, {
token : "constant.numeric", // hex
regex: "-?0[xX][0-9a-fA-F]+\\b"
}, {
token : "constant.numeric", // float
regex : "(?:0|[-+]?[1-9][0-9]*)\\b"
}, {
token : "constant.binary",
regex : "<[0-9A-Fa-f][0-9A-Fa-f](\\s+[0-9A-Fa-f][0-9A-Fa-f])*>"
}, {
token : "constant.language.boolean",
regex : "(?:true|false)\\b"
}, {
token : "constant.language.null",
regex : "null\\b"
}, {
token : "storage.type",
regex: "(?:Integer|Boolean|Null|String|Buffer|Tuple|List|Object|Function|Coroutine|Form)\\b"
}, {
token : "keyword",
regex : "(?:return|abort|vars|for|delete|in|is|escape|exec|split|and|if|elif|else|while)\\b"
}, {
token : "language.builtin",
regex : "(?:lines|source|parse|read-stream|interval|substr|parseint|write|print|range|rand|inspect|bind|i-values|i-pairs|i-map|i-filter|i-chunk|i-all\\?|i-any\\?|i-collect|i-zip|i-merge|i-each)\\b"
}, {
token : "comment",
regex : "--.*$"
}, {
token : "paren.lparen",
regex : "[[({]"
}, {
token : "paren.rparen",
regex : "[\\])}]"
}, {
token : "storage.form",
regex : "@[a-z]+"
}, {
token : "constant.other.symbol",
regex : ':+[a-zA-Z_]([-]?[a-zA-Z0-9_])*[?!]?'
}, {
token : "variable",
regex : '[a-zA-Z_]([-]?[a-zA-Z0-9_])*[?!]?'
}, {
token : "keyword.operator",
regex : "\\|\\||\\^\\^|&&|!=|==|<=|<|>=|>|\\+|-|\\*|\\/|\\^|\\%|\\#|\\!"
}, {
token : "text",
regex : "\\s+"
}
],
"string1" : [
{
token : "constant.language.escape",
regex : /\\(?:x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|['"\\\/bfnrt])/
}, {
token : "string",
regex : "[^'\\\\]+"
}, {
token : "string",
regex : "'",
next : "start"
}, {
token : "string",
regex : "",
next : "start"
}
],
"string2" : [
{
token : "constant.language.escape",
regex : /\\(?:x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|['"\\\/bfnrt])/
}, {
token : "string",
regex : '[^"\\\\]+'
}, {
token : "string",
regex : '"',
next : "start"
}, {
token : "string",
regex : "",
next : "start"
}
]
};
};
oop.inherits(JackHighlightRules, TextHighlightRules);
exports.JackHighlightRules = JackHighlightRules;
});