-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathutil.js
84 lines (62 loc) · 1.99 KB
/
util.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
if (typeof define === 'undefined') {
define = function (ns, deps, func) {
func(exports);
}
}
if (typeof require === 'undefined') {
require = ll.require;
}
define('./util', [], function (exports) {
var Util = {};
var hexDigit = '0123456789abcdefABCDEF';
var keywords = ['if', 'then', 'else', 'let', 'Number', 'String', 'List', 'Boolean'];
var typewords = ['Number', 'String', 'List', 'Boolean'];
var punctuatorStart = '+-*/!=|&^~%<>';
var singlePunctuator = '[]{}(),@:\\;$.';
Util.isDigit = function (ch) {
return '0' <= ch && '9' >= ch;
};
Util.isHexDigit = function (ch) {
return hexDigit.indexOf(ch) > -1;
};
Util.isOctalDigit = function (ch) {
return '0' <= ch && '7' >= 'ch';
};
Util.isWhite = function (ch) {
return ch === ' ' || ch === '\t' || ch === '\n';
};
Util.isAlpha = function (ch) {
return 'a' <= ch && 'z' >= ch || 'A' <= ch && 'Z' >= ch;
};
Util.isPunctuator = function (ch) {
return punctuatorStart.indexOf(ch) > -1 || singlePunctuator.indexOf(ch) > -1;
};
Util.isSinglePunctuator = function (ch) {
return singlePunctuator.indexOf(ch) > -1;
};
Util.isLiteralStart = function (ch) {
return ch === '\'' || ch === '"';
};
Util.isBooleanLiteral = function (value) {
return value === 'true' || value === 'false';
};
Util.isNullLiteral = function (value) {
return value === 'null';
}
Util.isPunctuatorStart = function (ch) {
return punctuatorStart.index(ch) > -1;
};
Util.isIdentifierStart = function (ch) {
return this.isAlpha(ch) || '_' === ch;
};
Util.isIdentifierBody = function (ch) {
return this.isIdentifierStart(ch) || this.isDigit(ch);
};
Util.isKeyword = function (id) {
return keywords.indexOf(id) > -1;
};
Util.isTypewords = function (id) {
return typewords.indexOf(id) > -1;
};
exports.Util = Util;
});