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

## js-define.js

```js
//#region js-define.js
three(), six();
//#endregion

```

## ts-assign_ts-assign.js

```js
//#region ts-assign/ts-assign.ts
three(), six();
(class {
	static accessor a = b;
	static {
		this.c = d;
	}
});
(class {
	static accessor #a = b;
	static {
		this.c = d;
	}
});
//#endregion

```

## ts-define_ts-define.js

```js
//#region ts-define/ts-define.ts
three(), six();
(class {
	static accessor a = b;
	static c = d;
});
(class {
	static accessor #a = b;
	static c = d;
});
//#endregion

```