-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathast-build.js
50 lines (47 loc) · 909 Bytes
/
ast-build.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
function buildRoot(child) {
return {
type: "Program",
body: [
{
type: "ExpressionStatement",
expression: {
type: "CallExpression",
callee: {
type: "MemberExpression",
object: {
type: "Identifier",
name: "console",
},
property: {
type: "Identifier",
name: "log",
},
computed: false,
},
arguments: [child],
},
},
],
sourceType: "script",
};
}
function buildLiteral(value) {
return {
type: "Literal",
value: Number(value),
raw: value,
};
}
function buildBinaryExpression(left, op, right) {
return {
type: "BinaryExpression",
left: left,
operator: op,
right: right,
};
}
module.exports = {
buildRoot,
buildBinaryExpression,
buildLiteral
}