forked from graphql/graphql-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinline-invariant.js
70 lines (63 loc) · 1.83 KB
/
inline-invariant.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
// @noflow
'use strict';
/**
* Eliminates function call to `invariant` if the condition is met.
*
* Transforms:
*
* invariant(<cond>, ...)
*
* to:
*
* !<cond> ? invariant(0, ...) : undefined;
*/
module.exports = function inlineInvariant(context) {
const invariantTemplate = context.template(`
(%%cond%%) || invariant(0, %%args%%)
`);
const assertTemplate = context.template(`
(%%cond%%) || devAssert(0, %%args%%)
`);
const t = context.types;
return {
visitor: {
CallExpression(path) {
const node = path.node;
const parent = path.parent;
if (
parent.type !== 'ExpressionStatement' ||
node.callee.type !== 'Identifier' ||
node.arguments.length === 0
) {
return;
}
const calleeName = node.callee.name;
if (calleeName === 'invariant') {
const [cond, args] = node.arguments;
// Check if it is unreachable invariant: "invariant(false, ...)"
if (cond.type === 'BooleanLiteral' && cond.value === false) {
addIstanbulIgnoreElse(path);
} else {
path.replaceWith(invariantTemplate({ cond, args }));
}
path.addComment('leading', ' istanbul ignore next ');
} else if (calleeName === 'devAssert') {
const [cond, args] = node.arguments;
path.replaceWith(assertTemplate({ cond, args }));
}
},
},
};
function addIstanbulIgnoreElse(path) {
const parentStatement = path.getStatementParent();
const previousStatement =
parentStatement.container[parentStatement.key - 1];
if (
previousStatement != null &&
previousStatement.type === 'IfStatement' &&
previousStatement.alternate == null
) {
t.addComment(previousStatement, 'leading', ' istanbul ignore else ');
}
}
};