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
---
source: crates/rolldown_testing/src/integration_test.rs
---
# Assets
## entry.js
```js
//#region entry.js
function a(x = foo) {
var foo;
return x;
}
var b = class {
fn(x = foo) {
var foo;
return x;
}
};
let c = [
function(x = foo) {
var foo;
return x;
},
(x = foo) => {
var foo;
return x;
},
{ fn(x = foo) {
var foo;
return x;
} },
class {
fn(x = foo) {
var foo;
return x;
}
}
];
//#endregion
export { a, b, c };
```