-
Notifications
You must be signed in to change notification settings - Fork 3
/
generate-identifier-regex.js
68 lines (59 loc) · 2.1 KB
/
generate-identifier-regex.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
/*
* Copyright (C) 2012-2014 by various contributors (see doc/ACORN_AUTHORS)
* Copyright (C) 2015-2017 Emily Klassen <forivall@gmail.com>
*
* See LICENSE for full license text
*/
// Which Unicode version should be used?
var version = '8.0.0';
function pad(str, width) {
while (str.length < width) str = "0" + str;
return str;
}
function esc(code) {
var hex = code.toString(16);
if (hex.length <= 2) return "\\x" + pad(hex, 2);
else return "\\u" + pad(hex, 4);
}
function generate(chars) {
var astral = [], re = "";
for (var i = 0, at = 0x10000; i < chars.length; i++) {
var from = chars[i], to = from;
while (i < chars.length - 1 && chars[i + 1] == to + 1) {
i++;
to++;
}
if (to <= 0xffff) {
if (from == to) re += esc(from);
else if (from + 1 == to) re += esc(from) + esc(to);
else re += esc(from) + "-" + esc(to);
} else {
astral.push(from - at, to - from);
at = to;
}
}
return {nonASCII: re, astral: astral};
}
var fs = require("fs");
/* My laptop is a potato. */
var startFileName = __dirname + "/../src/util/_identifierStartData.js";
console.log("Writing " + startFileName);
var start = require('unicode-' + version + '/properties/ID_Start/code-points')
.filter(function(ch) { return ch > 127; });
var startData = generate(start);
fs.writeFileSync(startFileName,
"export const nonASCIIidentifierStartChars = \"" + startData.nonASCII + "\";\n" +
"export const astralIdentifierStartCodes = " + JSON.stringify(startData.astral) + ";\n"
, {encoding: "utf8"});
startData = null;
var contFileName = __dirname + "/../src/util/_identifierContData.js"
console.log("Writing " + contFileName);
var cont = [0x200c, 0x200d].concat(require('unicode-' + version + '/properties/ID_Continue/code-points')
.filter(function(ch) { return ch > 127 && start.indexOf(ch) == -1; }));
var contData = generate(cont);
fs.writeFileSync(contFileName,
"export const nonASCIIidentifierChars = \"" + contData.nonASCII + "\";\n" +
"export const astralIdentifierCodes = " + JSON.stringify(contData.astral) + ";\n"
, {encoding: "utf8"});
cont = null;
contData = null;