---
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();
var StaticNormal = class {
static accessor a = b;
};
StaticNormal.c = d;
var StaticPrivate = class {
static accessor #a = b;
};
StaticPrivate.c = d;
//#endregion
```
## ts-define_ts-define.js
```js
// HIDDEN [\0@oxc-project+runtime@0.0.0/file.js]
// HIDDEN [\0@oxc-project+runtime@0.0.0/file.js]
// HIDDEN [\0@oxc-project+runtime@0.0.0/file.js]
// HIDDEN [\0@oxc-project+runtime@0.0.0/file.js]
//#region ts-define/ts-define.ts
three(), six();
var StaticNormal = class {
static accessor a = b;
};
_defineProperty(StaticNormal, "c", d);
var StaticPrivate = class {
static accessor #a = b;
};
_defineProperty(StaticPrivate, "c", d);
//#endregion
```