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
//#region entry.js
function a(x = foo) {
	var foo;
	return x;
}
var b = class {
	fn(x = foo) {
		var foo;
		return x;
	}
};
let c = [
	function(x = foo) {
		var foo;
		return x;
	},
	(x = foo) => {
		var foo;
		return x;
	},
	{ fn(x = foo) {
		var foo;
		return x;
	} },
	class {
		fn(x = foo) {
			var foo;
			return x;
		}
	}
];
//#endregion
export { a, b, c };

```