forked from rollup/rollup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
parse-ast.js
147 lines (140 loc) · 3.59 KB
/
parse-ast.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
const assert = require('node:assert');
const { parseAst, parseAstAsync } = require('../../dist/parseAst');
const { hasEsBuild } = require('../utils');
describe('parseAst', () => {
it('parses an AST', async () => {
assert.deepStrictEqual(parseAst('console.log("ok")'), {
type: 'Program',
start: 0,
end: 17,
body: [
{
type: 'ExpressionStatement',
start: 0,
end: 17,
expression: {
type: 'CallExpression',
start: 0,
end: 17,
arguments: [{ type: 'Literal', start: 12, end: 16, raw: '"ok"', value: 'ok' }],
callee: {
type: 'MemberExpression',
start: 0,
end: 11,
computed: false,
object: { type: 'Identifier', start: 0, end: 7, name: 'console' },
optional: false,
property: { type: 'Identifier', start: 8, end: 11, name: 'log' }
},
optional: false
}
}
],
sourceType: 'module'
});
});
if (hasEsBuild) {
it('works as an ES module', async () => {
const { parseAst: parseEsm } = await import('../../dist/es/parseAst.js');
assert.deepStrictEqual(parseEsm('console.log("ok")'), {
type: 'Program',
start: 0,
end: 17,
body: [
{
type: 'ExpressionStatement',
start: 0,
end: 17,
expression: {
type: 'CallExpression',
start: 0,
end: 17,
arguments: [{ type: 'Literal', start: 12, end: 16, raw: '"ok"', value: 'ok' }],
callee: {
type: 'MemberExpression',
start: 0,
end: 11,
computed: false,
object: { type: 'Identifier', start: 0, end: 7, name: 'console' },
optional: false,
property: { type: 'Identifier', start: 8, end: 11, name: 'log' }
},
optional: false
}
}
],
sourceType: 'module'
});
});
}
it('throws on parse errors', async () => {
assert.throws(() => parseAst('<=>'), {
name: 'RollupError',
message: 'Expression expected',
code: 'PARSE_ERROR',
pos: 0
});
});
it('throws on return outside function by default', async () => {
assert.throws(() => parseAst('return 42;'), {
name: 'RollupError',
message: 'Return statement is not allowed here',
code: 'PARSE_ERROR',
pos: 0
});
});
it('can handle return outside function if enabled', async () => {
assert.deepStrictEqual(parseAst('return 42;', { allowReturnOutsideFunction: true }), {
type: 'Program',
start: 0,
end: 10,
body: [
{
type: 'ReturnStatement',
start: 0,
end: 10,
argument: { type: 'Literal', start: 7, end: 9, raw: '42', value: 42 }
}
],
sourceType: 'module'
});
});
it('uses different references for key and value of a shorthand property', async () => {
const { key, value } = parseAst('({ foo });').body[0].expression.properties[0];
assert.deepStrictEqual(key, value);
assert.ok(key !== value);
});
});
describe('parseAstAsync', () => {
it('parses an AST', async () => {
assert.deepStrictEqual(await parseAstAsync('console.log("ok")'), {
type: 'Program',
start: 0,
end: 17,
body: [
{
type: 'ExpressionStatement',
start: 0,
end: 17,
expression: {
type: 'CallExpression',
start: 0,
end: 17,
arguments: [{ type: 'Literal', start: 12, end: 16, raw: '"ok"', value: 'ok' }],
callee: {
type: 'MemberExpression',
start: 0,
end: 11,
computed: false,
object: { type: 'Identifier', start: 0, end: 7, name: 'console' },
optional: false,
property: { type: 'Identifier', start: 8, end: 11, name: 'log' }
},
optional: false
}
}
],
sourceType: 'module'
});
});
});