---
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
```