rolldown 1.0.3

Fast JavaScript bundler in Rust, designed for the future of Vite
Documentation
---
source: crates/rolldown_testing/src/integration_test.rs
---
# Assets

## entry-outer.js

```js
function identity1(x) {
	return x;
}
function identity2(x) {
	return x;
}
function identity3(x) {
	return x;
}
//#endregion
//#region entry-outer.js
check(void 0, (args, void 0), ([...args], void 0), identity1(), identity2(args), identity3(...args));
//#endregion

```

## entry.js

```js
//#region entry.js
function identity1(x) {
	return x;
}
function identity2(x) {
	return x;
}
function identity3(x) {
	return x;
}
check(void 0, (args, void 0), ([...args], void 0), identity1(), identity2(args), identity3(...args));
//#endregion

```