-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbabel-jscs.js
294 lines (239 loc) · 7.82 KB
/
babel-jscs.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
var babelJSCS = require("..");
var esprima = require("esprima");
// testing with esprima-fb until esprima has jsx support
var esprimaFb = require("esprima-fb");
var util = require("util");
// Checks if the source ast implements the target ast. Ignores extra keys on source ast
function assertImplementsAST(target, source, path) {
if (!path) {
path = [];
}
function error(text) {
var err = new Error("At " + path.join(".") + ": " + text + ":");
err.depth = path.length + 1;
throw err;
}
var typeA = target === null ? "null" : typeof target;
var typeB = source === null ? "null" : typeof source;
if (typeA !== typeB) {
error("have different types (" + typeA + " !== " + typeB + ")");
} else if (typeA === "object") {
var keysTarget = Object.keys(target);
for (var i in keysTarget) {
var key = keysTarget[i];
path.push(key);
assertImplementsAST(target[key], source[key], path);
path.pop();
}
} else if (target !== source) {
error("are different (" + JSON.stringify(target) + " !== " + JSON.stringify(source) + ")");
}
}
function parseAndAssertSame(code, parser, parserName) {
var esAST = (parser || esprima).parse(code, {
tokens: true,
loc: true,
range: true,
comment: true,
attachComments: true,
sourceType: "module"
});
var acornAST = babelJSCS.parse(code);
try {
assertImplementsAST(esAST, acornAST);
} catch(err) {
err.message +=
"\n" + (parserName || "esprima") + ":\n" +
util.inspect(esAST, {depth: err.depth, colors: true}) +
"\nbabel-eslint:\n" +
util.inspect(acornAST, {depth: err.depth, colors: true});
throw err;
}
}
describe("acorn-to-esprima", function () {
describe("templates", function () {
it("empty template string", function () {
parseAndAssertSame("``");
});
it("template string", function () {
parseAndAssertSame("`test`");
});
it("template string using $", function () {
parseAndAssertSame("`$`");
});
it("template string with expression", function () {
parseAndAssertSame("`${a}`");
});
it("template string with multiple expressions", function () {
parseAndAssertSame("`${a}${b}${c}`");
});
it("template string with expression and strings", function () {
parseAndAssertSame("`a${a}a`");
});
it("template string with binary expression", function () {
parseAndAssertSame("`a${a + b}a`");
});
it("tagged template", function () {
parseAndAssertSame("jsx`<Button>Click</Button>`");
});
it("tagged template with expression", function () {
parseAndAssertSame("jsx`<Button>Hi ${name}</Button>`");
});
it("tagged template with new operator", function () {
parseAndAssertSame("new raw`42`");
});
it("template with nested function/object", function () {
parseAndAssertSame("`outer${{x: {y: 10}}}bar${`nested${function(){return 1;}}endnest`}end`");
});
it("template with braces inside and outside of template string", function () {
parseAndAssertSame("if (a) { var target = `{}a:${webpackPort}{}}}}`; } else { app.use(); }");
});
it("template also with braces", function () {
parseAndAssertSame(
"export default function f1() {" +
"function f2(foo) {" +
"const bar = 3;" +
"return `${foo} ${bar}`;" +
"}" +
"return f2;" +
"}"
);
});
it("template with destructuring", function () {
parseAndAssertSame([
"module.exports = {",
"render() {",
"var {name} = this.props;",
"return Math.max(null, `Name: ${name}, Name: ${name}`);",
"}",
"};"].join("\n")
);
});
});
describe("jsx", function () {
it("jsx expression", function () {
parseAndAssertSame("<App />", esprimaFb, "esprima-fb");
});
it("jsx expression with 'this' as identifier", function () {
parseAndAssertSame("<this />", esprimaFb, "esprima-fb");
});
it("jsx expression with a dynamic attribute", function () {
parseAndAssertSame("<App foo={bar} />", esprimaFb, "esprima-fb");
});
it("jsx expression with a member expression as identifier", function () {
parseAndAssertSame("<foo.bar />", esprimaFb, "esprima-fb");
});
it("jsx expression with spread", function () {
parseAndAssertSame("var myDivElement = <div {...this.props} />;", esprimaFb, "esprima-fb");
});
it("empty jsx text", function () {
parseAndAssertSame("<a></a>", esprimaFb, "esprima-fb");
});
it("jsx text with content", function () {
parseAndAssertSame("<a>Hello, world!</a>", esprimaFb, "esprima-fb");
});
it("nested jsx", function () {
parseAndAssertSame("<div>\n<h1>Wat</h1>\n</div>", esprimaFb, "esprima-fb");
});
});
describe("literals", function () {
it("single quote string", function () {
parseAndAssertSame("var a = '1'");
});
it("float with decimal in front", function () {
parseAndAssertSame("var a = .5");
});
it("hex", function () {
parseAndAssertSame("var a = 0x10");
});
it("binary", function () {
parseAndAssertSame("var a = 0b10");
});
it("octal", function () {
parseAndAssertSame("var a = 0o10");
});
it("octal", function () {
parseAndAssertSame("var a = 0o10");
});
it("exponential notation", function () {
parseAndAssertSame("var a = 1e5");
});
});
it("simple expression", function () {
parseAndAssertSame("a = 1");
});
it("class declaration", function () {
parseAndAssertSame("class Foo {}");
});
it("class expression", function () {
parseAndAssertSame("var a = class Foo {}");
});
it("default import", function () {
parseAndAssertSame("import foo from \"foo\";");
});
it("import specifier", function () {
parseAndAssertSame("import { foo } from \"foo\";");
});
it("import specifier with name", function () {
parseAndAssertSame("import { foo as bar } from \"foo\";");
});
it("import bare", function () {
parseAndAssertSame("import \"foo\";");
});
it("export default class declaration", function () {
parseAndAssertSame("export default class Foo {}");
});
it("export default class expression", function () {
parseAndAssertSame("export default class {}");
});
it("export default function declaration", function () {
parseAndAssertSame("export default function Foo() {}");
});
it("export default function expression", function () {
parseAndAssertSame("export default function () {}");
});
it("export all", function () {
parseAndAssertSame("export * from \"foo\";");
});
it("export named", function () {
parseAndAssertSame("export { foo };");
});
it("export named alias", function () {
parseAndAssertSame("export { foo as bar };");
});
it("empty program with line comment", function () {
parseAndAssertSame("// single comment");
});
it("empty program with block comment", function () {
parseAndAssertSame(" /* multiline\n * comment\n*/");
});
it("line comments", function () {
parseAndAssertSame([
" // single comment",
"var foo = 15; // comment next to statement",
"// second comment after statement"
].join("\n"));
});
it("block comments", function () {
parseAndAssertSame([
" /* single comment */ ",
"var foo = 15; /* comment next to statement */",
"/*",
" * multiline",
" * comment",
" */"
].join("\n"));
});
it("null", function () {
parseAndAssertSame("null");
});
it("boolean", function () {
parseAndAssertSame("if (true) {} else if (false) {}");
});
it("regexp", function () {
parseAndAssertSame("/affix-top|affix-bottom|affix|[a-z]/");
});
it("regexp in a template string", function () {
parseAndAssertSame("`${/\\d/.exec(\"1\")[0]}`");
});
});