rolldown 0.1.0

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 [rolldown:runtime]
//#region a.js
var abc;
var init_a = __esm({ "a.js": (() => {
	abc = void 0;
}) });

//#endregion
//#region b.js
var b_exports = /* @__PURE__ */ __export({ xyz: () => xyz });
var xyz;
var init_b = __esm({ "b.js": (() => {
	xyz = null;
}) });

//#endregion
//#region commonjs.js
var commonjs_exports = /* @__PURE__ */ __export({
	C: () => Class,
	Class: () => Class,
	Fn: () => Fn,
	abc: () => abc,
	b: () => b_exports,
	c: () => c,
	default: () => commonjs_default,
	l: () => l,
	v: () => v
});
function Fn() {}
var commonjs_default, v, l, c, Class;
var init_commonjs = __esm({ "commonjs.js": (() => {
	init_a();
	init_b();
	commonjs_default = 123;
	v = 234;
	l = 234;
	c = 234;
	Class = class {};
}) });

//#endregion
//#region c.js
var c_exports = /* @__PURE__ */ __export({ default: () => c_default });
var c_default;
var init_c = __esm({ "c.js": (() => {
	c_default = class {};
}) });

//#endregion
//#region d.js
var d_exports = /* @__PURE__ */ __export({ default: () => Foo });
var Foo;
var init_d = __esm({ "d.js": (() => {
	Foo = class {};
	Foo.prop = 123;
}) });

//#endregion
//#region e.js
var e_exports = /* @__PURE__ */ __export({ default: () => e_default });
function e_default() {}
var init_e = __esm({ "e.js": (() => {}) });

//#endregion
//#region f.js
var f_exports = /* @__PURE__ */ __export({ default: () => foo$1 });
function foo$1() {}
var init_f = __esm({ "f.js": (() => {
	foo$1.prop = 123;
}) });

//#endregion
//#region g.js
var g_exports = /* @__PURE__ */ __export({ default: () => g_default });
async function g_default() {}
var init_g = __esm({ "g.js": (() => {}) });

//#endregion
//#region h.js
var h_exports = /* @__PURE__ */ __export({ default: () => foo });
async function foo() {}
var init_h = __esm({ "h.js": (() => {
	foo.prop = 123;
}) });

//#endregion
//#region entry.js
init_commonjs();
init_c();
init_d();
init_e();
init_f();
init_g();
init_h();

//#endregion
```