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.js

```js
// HIDDEN [\0rolldown/runtime.js]
//#region a.js
const abc = void 0;
//#endregion
//#region b.js
var b_exports = /* @__PURE__ */ __exportAll({ xyz: () => null });
//#endregion
//#region entry.js
var entry_default = 123;
var v = 234;
let l = 234;
const c = 234;
function Fn() {}
var Class = class {};
//#endregion
export { Class as C, Class, Fn, abc, b_exports as b, c, entry_default as default, l, v };

```