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

## main.js

```js
import assert from "assert";

//#region main.js
let result = "FAIL";
({ ...{ get prop() {
	result = "PASS";
} } });
assert.strictEqual(result, "PASS");

//#endregion
```