This repository has been archived by the owner on May 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransform.js
482 lines (431 loc) · 8.3 KB
/
transform.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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
'use strict'
var _ = require('lodash')
var estraverse = require('estraverse')
var etc = require('./etc')
// Node type unknown to estraverse
var keys = {
ParenthesizedExpression: ['expression'],
}
function blocks(a, isEnd) {
var bs = []
for (var i = 0; i < a.length;) {
for (var j = i + 1; j < a.length; j++)
if (isEnd(a[j], j))
break
bs.push(a.slice(i, j))
i = j
}
return bs
}
function cmp(a, b) {
if (a < b)
return -1
if (a > b)
return 1
return 0
}
function cmpCases(a, b) {
function key(x) {
x = x.test
if (!x)
return '\uffff'
switch (x.type) {
case 'Identifier':
return x.name
case 'Literal':
return x.value
}
}
return cmp(key(a), key(b))
}
function hasTerminator(c) {
var a = c.consequent
if (!a.length)
return
return isTerminator(_.last(a))
}
function hoistComments(a) {
var comment
for (var i = 0; i < a.length; i++) {
if (a[i].comments) {
comment = a[i].comments
delete a[i].comments
}
a[0].comments = comment
}
}
function isConst(a) {
if (!a)
return true
switch (a.type) {
case 'ArrayExpression':
return !a.elements.length
case 'Literal':
return true
case 'NewExpression':
if (a.callee.type !== 'Identifier' || a.callee.name !== 'Map')
return
return !a.arguments.length
case 'ObjectExpression':
return !a.properties.length
}
}
function isExport(a) {
if (a.type !== 'ExpressionStatement')
return
a = a.expression
if (a.type !== 'AssignmentExpression')
return
if (a.left.type !== 'MemberExpression')
return
if (a.left.object.type !== 'Identifier')
return
if (a.left.object.name !== 'exports')
return
if (a.right.type !== 'Identifier')
return
return true
}
function isSimpleAssign(a) {
if (a.type !== 'ExpressionStatement')
return
a = a.expression
if (a.type !== 'AssignmentExpression')
return
if (a.left.type !== 'Identifier')
return
return isConst(a.right) || a.right.type === 'Identifier'
}
function isSimpleVar(a) {
if (a.type !== 'VariableDeclaration')
return
if (a.declarations.length !== 1)
return
a = a.declarations[0].init
return isConst(a) || a.type === 'Identifier'
}
function isTerminator(a) {
switch (a.type) {
case 'BreakStatement':
case 'ContinueStatement':
case 'ReturnStatement':
case 'ThrowStatement':
return true
}
}
function run(a) {
// ===
estraverse.traverse(a, {
enter(a) {
if (a.type !== 'BinaryExpression')
return
if (a.left.value !== null && a.right.value !== null)
switch (a.operator) {
case '!=':
a.operator = '!=='
break
case '==':
a.operator = '==='
break
}
},
keys,
})
// Braces
estraverse.traverse(a, {
enter(a) {
switch (a.type) {
case 'DoWhileStatement':
case 'ForOfStatement':
case 'ForStatement':
case 'WhileStatement':
a.body = unbrace(a.body)
break
case 'IfStatement':
a.consequent = unbrace(a.consequent)
a.alternate = unbrace(a.alternate)
break
}
},
keys,
})
// Break
estraverse.traverse(a, {
enter(a) {
if (a.type !== 'SwitchStatement')
return
if (!a.cases.length)
return
var c = _.last(a.cases)
if (hasTerminator(c))
return
c.consequent.push({
loc: a.loc,
type: 'BreakStatement',
})
},
keys,
})
// Comments
estraverse.traverse(a, {
enter(a) {
if (!a.comments)
return
var c = a.comments[0]
if (c.type === 'Line') {
var s = c.value
for (var i = 0; i < s.length; i++)
if (s[i] !== ' ') {
c.value = s.slice(0, i) + s[i].toUpperCase() + s.slice(i + 1)
break
}
}
},
keys,
})
// Properties
estraverse.traverse(a, {
enter(a) {
if (a.type !== 'Property')
return
if (a.key.type !== 'Literal')
return
if (typeof (a.key.value) !== 'string')
return
a.key.type = 'Identifier'
a.key.name = a.key.value
},
keys,
})
// Sort assignment
estraverse.traverse(a, {
enter(a) {
if (!a.body)
return
a.body = sortAssigns(a.body)
},
keys,
})
// Sort cases
estraverse.traverse(a, {
enter(a) {
if (a.type !== 'SwitchStatement')
return
a.cases = sortElements(a.cases, c => true, (c, i) => a.cases[i - 1].consequent.length, cmpCases, b => {
var consequent = []
for (var c of b)
if (c.consequent.length) {
consequent = c.consequent
c.consequent = []
}
_.last(b).consequent = consequent
})
a.cases = sortBlocks(a.cases, (c, i) => a.cases[i - 1].consequent.length && hasTerminator(a.cases[i - 1]), cmpCases)
},
keys,
})
// Sort exports
estraverse.traverse(a, {
enter(a) {
if (!a.body)
return
a.body = sortElements(a.body, isExport, _.negate(isExport), (a, b) => {
function key(x) {
return x.expression.right.name
}
return cmp(key(a), key(b))
})
},
keys,
})
// Sort functions
estraverse.traverse(a, {
enter(a) {
if (!a.body)
return
a.body = sortElements(a.body, b => b.type === 'FunctionDeclaration', b => b.type !== 'FunctionDeclaration', (a, b) => {
function key(x) {
return x.id.name
}
return cmp(key(a), key(b))
})
},
keys,
})
// Sort methods
estraverse.traverse(a, {
enter(a) {
if (!a.body)
return
a.body = sortElements(a.body, b => b.type === 'MethodDefinition', b => b.type !== 'MethodDefinition', (a, b) => {
function key(x) {
if (x.key.name === 'constructor')
return ''
return x.key.name
}
return cmp(key(a), key(b))
})
},
keys,
})
// Sort properties
estraverse.traverse(a, {
enter(a) {
if (a.type !== 'ObjectExpression')
return
a.properties = sortElements(a.properties, b => true, b => false, (a, b) => {
function key(x) {
x = x.key
switch (x.type) {
case 'Identifier':
return x.name
case 'Literal':
return x.value
}
}
return cmp(key(a), key(b))
})
},
keys,
})
// Sort requires
estraverse.traverse(a, {
enter(a) {
if (!a.body)
return
a.body = sortElements(a.body, etc.isRequire, _.negate(etc.isRequire), (a, b) => {
function key(x) {
return x.declarations[0].id.name
}
return cmp(key(a), key(b))
})
},
keys,
})
// Sort vars
estraverse.traverse(a, {
enter(a) {
if (!a.body)
return
a.body = sortVars(a.body)
},
keys,
})
}
function sortAssigns(a) {
if (a.constructor !== Array)
return a
var r = []
loop:
for (var i = 0; i < a.length;) {
if (!isSimpleAssign(a[i], j)) {
r.push(a[i++])
continue
}
for (var j = i + 1; j < a.length; j++) {
if (a[j].comments)
break
if (!isSimpleAssign(a[j], j))
break
}
var b = a.slice(i, j)
i = j
for (var x of b)
for (var y of b)
if (x.expression.left.name === y.expression.right.name) {
r.push(...b)
continue loop
}
b = b.sort((a, b) => {
function key(x) {
return x.expression.left.name
}
return cmp(key(a), key(b))
})
hoistComments(b)
r.push(...b)
}
return r
}
function sortBlocks(a, isEnd, cmp) {
var bs = blocks(a, isEnd)
bs = bs.sort((x, y) => cmp(x[0], y[0]))
return [].concat(...bs)
}
function sortElements(a, isSortableStart, isSortableEnd, cmp, post) {
if (a.constructor !== Array)
return a
var r = []
for (var i = 0; i < a.length;) {
if (!isSortableStart(a[i], j)) {
r.push(a[i++])
continue
}
for (var j = i + 1; j < a.length; j++) {
if (a[j].comments)
break
if (isSortableEnd(a[j], j))
break
}
var b = a.slice(i, j).sort(cmp)
i = j
hoistComments(b)
if (post)
post(b)
r.push(...b)
}
return r
}
function sortVars(a) {
if (a.constructor !== Array)
return a
var r = []
loop:
for (var i = 0; i < a.length;) {
if (!isSimpleVar(a[i], j)) {
r.push(a[i++])
continue
}
for (var j = i + 1; j < a.length; j++) {
if (a[j].comments)
break
if (!isSimpleVar(a[j], j))
break
}
var b = a.slice(i, j)
i = j
for (var x of b)
for (var y of b)
if (y.declarations[0].init && x.declarations[0].id.name === y.declarations[0].init.name) {
r.push(...b)
continue loop
}
b = b.sort((a, b) => {
function key(x) {
return x.declarations[0].id.name
}
return cmp(key(a), key(b))
})
hoistComments(b)
r.push(...b)
}
return r
}
function unbrace(a) {
if (!a)
return a
if (a.type !== 'BlockStatement')
return a
switch (a.body.length) {
case 0:
return {
type: 'EmptyStatement',
}
case 1:
if (a.body[0].comments)
break
return a.body[0]
}
return a
}
exports.run = run