-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
112 lines (101 loc) · 2.28 KB
/
index.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
"use strict";
const estraverse = require("estraverse");
const { Syntax } = estraverse;
/**
* Change `assert` to `power-assert` destructively.
*
* @param {Object} ast
* @return {Object}
*/
function empowerAssert(ast) {
estraverse.traverse(ast, {
enter,
});
return ast;
}
/**
* @param {Object} node
* @param {Object} parent
*/
function enter(node, parent) {
if (node.type === Syntax.AssignmentExpression) {
if (node.operator !== "=") {
return;
}
if (!isIdentifier(node.left, "assert")) {
return;
}
if (replaceAssertIfMatch(node.right)) {
return;
}
}
if (node.type === Syntax.VariableDeclarator) {
if (!isIdentifier(node.id, "assert")) {
return;
}
if (replaceAssertIfMatch(node.init)) {
return;
}
}
if (node.type === Syntax.ImportDeclaration) {
const { source } = node;
if (!source || source.type !== Syntax.Literal || source.value !== "assert") {
return;
}
changeAssertToPowerAssert(source);
}
}
/**
* @param {Object} node
* @return {boolean} true if `assert` is replaced to `power-assert`.
*/
function replaceAssertIfMatch(node) {
let target;
if (node === null) {
return false;
} else if (node.type === Syntax.CallExpression) {
target = node;
} else if (node.type === Syntax.MemberExpression) {
target = node.object;
} else {
return false;
}
if (isRequireAssert(target)) {
changeAssertToPowerAssert(target.arguments[0]);
return true;
}
return false;
}
/**
* @param {Object} node A Literal node.
*/
function changeAssertToPowerAssert(node) {
node.value = "power-assert";
}
/**
* @param {Object} node A CallExpression node.
* @return {boolean} true if the node is `require('assert')`.
*/
function isRequireAssert(node) {
if (!node || node.type !== Syntax.CallExpression) {
return false;
}
if (!isIdentifier(node.callee, "require")) {
return false;
}
const arg = node.arguments[0];
if (!arg || arg.type !== Syntax.Literal || arg.value !== "assert") {
return false;
}
return true;
}
/**
* @param {Object} node
* @param {string} name
* @return {boolean}
*/
function isIdentifier(node, name) {
return node && node.type === Syntax.Identifier && node.name === name;
}
module.exports = empowerAssert;
empowerAssert.enter = enter;