-
Notifications
You must be signed in to change notification settings - Fork 3
/
javascript.js
495 lines (485 loc) · 20.7 KB
/
javascript.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
483
484
485
486
487
488
489
490
491
492
493
494
495
import * as escodegen from 'escodegen';
import esprima from 'esprima-next';
import estraverse from 'estraverse';
const debug = false;
export class javascriptManipulator {
constructor(code = '') {
this.code = code;
}
async setCode(code) {
this.code = code;
await this.parse();
return this.code;
}
async mergeCode(newCode) {
try {
await esprima.parseScript(newCode, {
tolerant: true,
range: true,
loc: true,
attachComment: true
});
} catch (e) {
console.error(e);
debugLog('Error parsing the new code snippet');
return false;
}
this.code = this.code + '\n\n\n\n' + newCode;
await this.parse();
await this.mergeDuplicates();
return await this.generateCode();
}
async mergeDuplicates() {
await this.parse();
await this.cleanUpComments();
await this.makeAllFunctionsExported();
await this.makeAllClassesExported();
await this.mergeDuplicateImports();
await this.mergeDuplicateVariables();
await this.mergeDuplicateFunctions();
await this.mergeDuplicateClasses();
await this.removeEmptyExports();
return await this.generateCode();
}
async removeEmptyExports() {
// Remove empty export statements
await estraverse.replace(this.ast, {
enter: (node, parent) => {
if (node.type === 'ExportNamedDeclaration' && !node.declaration && (!node.specifiers || node.specifiers.length === 0)) {
return this.removeNodeFromParent(node, parent);
}
return node;
}
});
}
async mergeDuplicateFunctions() {
if (!this.ast) {
throw new Error('AST not parsed. Call the `parse` method first.');
}
const functionMap = new Map();
// Traverse the AST to collect all function declarations
estraverse.traverse(this.ast, {
enter: node => {
if (node.type === 'FunctionDeclaration') {
const functionName = node.id.name;
debugLog(`Processing function: ${functionName}`);
if (functionMap.has(functionName)) {
const existingFunction = functionMap.get(functionName);
debugLog(`Duplicate function found: ${functionName}`);
// Check if the new function contains code
const hasCode = node.body.body && node.body.body.length > 0;
const existingHasCode = existingFunction.body.body && existingFunction.body.body.length > 0;
// Handle JSDoc comments
const jsDocComment = node.leadingComments?.find(comment => comment.type === 'Block' && comment.value.startsWith('*'));
if (hasCode) {
debugLog(`Replacing existing function '${functionName}' with new implementation.`);
functionMap.set(functionName, node);
// Update map to hold the new function
// Copy JSDoc comments from the new function if exists
if (jsDocComment) {
existingFunction.leadingComments = [
...existingFunction.leadingComments || [],
jsDocComment
];
}
} else if (existingHasCode) {
debugLog(`Keeping existing function '${functionName}' as it has valid implementation.`);
} else {
debugLog(`Both functions '${functionName}' are stubs; keeping the first one.`);
}
// Keep the original stub
// Mark the duplicate function for removal (the one that is lower in the file)
if (hasCode) {
existingFunction.remove = true;
} else
// We want to remove the earlier one only if hasCode is true
{
node.remove = true;
}
} else
// If duplicate stubs, mark the later one for removal
{
debugLog(`Adding function '${functionName}' to map.`);
functionMap.set(functionName, node);
}
}
}
});
// Store the new function in the map
// Remove marked duplicate functions
estraverse.replace(this.ast, {
enter: (node, parent) => {
if (node.remove) {
debugLog(`Removing duplicate function: ${node.id.name}`);
return this.removeNodeFromParent(node, parent);
}
return node;
}
});
// Check for exported functions and ensure they stay distinct
estraverse.replace(this.ast, {
enter: node => {
if (node.type === 'ExportNamedDeclaration' && node.declaration && node.declaration.type === 'FunctionDeclaration') {
const functionName = node.declaration.id.name;
debugLog(`Processing exported function: ${functionName}`);
if (functionMap.has(functionName)) {
const existingFunction = functionMap.get(functionName);
if (existingFunction !== node.declaration) {
debugLog(`Marking old exported function '${functionName}' for removal.`);
existingFunction.remove = true;
}
}
}
}
});
// Mark the old function for removal
return this.ast;
}
async mergeDuplicateImports() {
if (!this.ast) {
throw new Error('AST not parsed. Call the `parse` method first.');
}
const importMap = new Map();
const importNodes = [];
debugLog('Merging duplicate imports');
// Traverse the AST to collect and combine imports
estraverse.traverse(this.ast, {
enter: (node, parent) => {
if (node.type === 'ImportDeclaration') {
const source = node.source.value;
debugLog(`import {${node.specifiers.map(s => s.local.name).join(', ')}} from '${source}'`);
if (importMap.has(source)) {
// Merge specifiers from the duplicate import
const existingNode = importMap.get(source);
const existingSpecifiers = existingNode.specifiers;
const newSpecifiers = node.specifiers;
// Avoid duplicates in specifiers
newSpecifiers.forEach(specifier => {
if (!existingSpecifiers.some(existing => existing.local.name === specifier.local.name)) {
existingSpecifiers.push(specifier);
}
});
// Mark the duplicate node for removal
node.remove = true;
} else {
// Add the import to the map
importMap.set(source, node);
importNodes.push(node);
}
}
}
});
// Keep track of import nodes
// Remove duplicate import nodes
estraverse.replace(this.ast, {
enter: (node, parent) => {
if (node.type === 'ImportDeclaration' && node.remove) {
return this.removeNodeFromParent(node, parent);
}
return node;
}
});
// Move all imports to the top of the program
estraverse.replace(this.ast, {
enter: node => {
if (node.type === 'Program') {
// Remove all imports from their original position
node.body = node.body.filter(child => child.type !== 'ImportDeclaration');
// Add the combined import statements to the top
node.body.unshift(...importNodes);
}
return node;
}
});
return this.ast;
}
async mergeDuplicateVariables() {
if (!this.ast) {
throw new Error('AST not parsed. Call the `parse` method first.');
}
const variableMap = new Map();
// Traverse the AST to collect root-level variable declarations
estraverse.traverse(this.ast, {
enter: (node, parent) => {
// Only process root-level variable declarations
if (node.type === 'VariableDeclaration' && parent.type === 'Program') {
node.declarations.forEach(declaration => {
const variableName = declaration.id.name;
if (variableMap.has(variableName)) {
const existingDeclaration = variableMap.get(variableName);
existingDeclaration.id = declaration.id;
existingDeclaration.init = declaration.init;
// Mark the new (later) declaration for removal
declaration.remove = true;
} else {
// Add the variable to the map
variableMap.set(variableName, declaration);
}
});
}
}
});
// Remove duplicate variable declarations
estraverse.replace(this.ast, {
enter: (node, parent) => {
if (node.type === 'VariableDeclaration' && node.declarations.every(decl => decl.remove)) {
return this.removeNodeFromParent(node, parent);
}
// Filter out removed declarations from VariableDeclaration nodes
if (node.type === 'VariableDeclaration') {
node.declarations = node.declarations.filter(decl => !decl.remove);
}
return node;
}
});
return this.ast;
}
async mergeDuplicateClasses() {
if (!this.ast) {
throw new Error('AST not parsed. Call the `parse` method first.');
}
const classMap = new Map();
// Traverse the AST to collect all class declarations
estraverse.traverse(this.ast, {
enter: node => {
if (node.type === 'ClassDeclaration') {
const className = node.id.name;
if (classMap.has(className)) {
const existingClass = classMap.get(className);
const existingMethods = new Map(existingClass.body.body.filter(method => method.type === 'MethodDefinition').map(method => [
method.key.name,
method
]));
node.body.body.forEach(method => {
if (method.type === 'MethodDefinition') {
const methodName = method.key.name;
if (existingMethods.has(methodName)) {
const existingMethod = existingMethods.get(methodName);
// Handle JSDoc comments
const jsDocComment = method.leadingComments?.find(comment => comment.type === 'Block' && comment.value.startsWith('*'));
// Replace method only if the new method has code
if (method.value.body && method.value.body.body.length > 0) {
existingMethod.value = method.value;
if (jsDocComment) {
existingMethod.leadingComments = [
...existingMethod.leadingComments || [],
jsDocComment
];
}
} else {
if (jsDocComment) {
existingMethod.leadingComments = [
...existingMethod.leadingComments || [],
jsDocComment
];
}
}
} else {
// Add the new method if it does not exist
existingClass.body.body.push(method);
}
}
});
// Mark the current class for removal
node.remove = true;
} else {
// Add the class to the map
classMap.set(className, node);
}
}
}
});
// Remove duplicate classes
estraverse.replace(this.ast, {
enter: (node, parent) => {
if (node.remove) {
return this.removeNodeFromParent(node, parent);
}
return node;
}
});
return this.ast;
}
async cleanUpComments() {
// iterate over the AST and remove adjacent duplicate leading comments
await estraverse.traverse(this.ast, {
enter: node => {
if (node.leadingComments) {
for (let i = 0; i < node.leadingComments.length - 1; i++) {
if (node.leadingComments[i].value === node.leadingComments[i + 1].value) {
node.leadingComments.splice(i, 1);
}
}
}
}
});
await estraverse.traverse(this.ast, {
enter: node => {
if (node.leadingComments) {
node.leadingComments = node.leadingComments.filter(comment => !comment.value.match(/... existing/i));
}
}
});
// if a comment includes "" remove the string "" (case insensitive)
await estraverse.traverse(this.ast, {
enter: node => {
if (node.leadingComments) {
node.leadingComments = node.leadingComments.map(comment => {
return {
type: comment.type,
value: comment.value.replace(/New method:/i, '')
};
});
}
}
});
}
removeNodeFromParent(node, parent) {
if (!parent)
return null;
if (Array.isArray(parent.body)) {
parent.body = parent.body.filter(child => child !== node);
}
return null;
}
async makeAllClassesExported() {
if (!this.ast) {
throw new Error('AST not parsed. Call the `parse` method first.');
}
await estraverse.replace(this.ast, {
enter: (node, parent) => {
// Check if the node is a class declaration
if (node.type === 'ClassDeclaration') {
// If the parent is not already an export declaration, modify it
if (!parent || parent.type !== 'ExportNamedDeclaration') {
// Wrap in ExportNamedDeclaration only if not already exported
// copy the comments from the function to the export statement
const leadingComments = node.leadingComments;
const trailingComments = node.trailingComments;
node.leadingComments = [];
node.trailingComments = [];
return {
type: 'ExportNamedDeclaration',
declaration: node,
specifiers: [],
source: null,
leadingComments,
trailingComments
};
}
}
return node;
}
});
await this.generateCode();
return this.ast;
}
async makeAllFunctionsExported() {
if (!this.ast) {
throw new Error('AST not parsed. Call the `parse` method first.');
}
estraverse.replace(this.ast, {
enter: (node, parent) => {
// Check if the node is a FunctionDeclaration
if (node.type === 'FunctionDeclaration') {
// Ensure the parent is the root Program node
if (parent && parent.type === 'Program') {
// If not already an ExportNamedDeclaration, wrap it
if (!parent.body.some(
(child) =>
child.type === 'ExportNamedDeclaration' &&
child.declaration === node
)) {
// Handle comments
const leadingComments = node.leadingComments || [];
const trailingComments = node.trailingComments || [];
node.leadingComments = [];
node.trailingComments = [];
return {
type: 'ExportNamedDeclaration',
declaration: node,
specifiers: [],
source: null,
leadingComments,
trailingComments,
};
}
}
}
return node;
},
});
await this.generateCode();
return this.ast;
}
async parse() {
this.ast = {};
this.ast = await esprima.parseScript(this.code, {
tolerant: true,
range: true,
loc: true,
attachComment: true,
sourceType: 'module'
});
// remove trailing comments from the original code except for the last one under the particular node
estraverse.traverse(this.ast, {
enter: node => {
if (node.trailingComments) {
node.trailingComments = [];
}
}
});
// iterate over the AST and remove adjacent duplicate leading comments
estraverse.traverse(this.ast, {
enter: node => {
if (node.leadingComments) {
for (let i = 0; i < node.leadingComments.length - 1; i++) {
if (node.leadingComments[i].value === node.leadingComments[i + 1].value) {
node.leadingComments.splice(i, 1);
}
}
}
}
});
//debugLog(this.ast);
return this.ast;
}
async generateCode() {
//debugLog('Generating code', this.code);
if (!this.ast) {
throw new Error('AST not parsed. Call the `parse` method first.');
}
//debugLog(this.ast)
const newCode = await escodegen.generate(this.ast, {
comment: true,
format: {
indent: {
style: ' ',
base: 0,
adjustMultilineComment: false
},
newline: '\n',
space: ' ',
json: false,
renumber: false,
hexadecimal: false,
quotes: 'single',
escapeless: true,
compact: false,
parentheses: true,
semicolons: true,
safeConcatenation: true
}
});
//debugLog(`this is the new code: ${newCode}`);
//debugLog(this.ast);
this.code = newCode;
await this.parse();
return this.code;
}
}
async function debugLog(...args) {
if (debug) {
debugLog(...args);
}
}