mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
40 lines
810 B
TypeScript
40 lines
810 B
TypeScript
// @allowJs: true
|
|
// @noEmit: true
|
|
// @strict: true
|
|
// @checkJs: true
|
|
// @filename: mod1.js
|
|
|
|
const obj = { value: 42, writable: true };
|
|
Object.defineProperty(exports, "thing", obj);
|
|
|
|
/**
|
|
* @type {string}
|
|
*/
|
|
let str = /** @type {string} */("other");
|
|
Object.defineProperty(exports, str, { value: 42, writable: true });
|
|
|
|
const propName = "prop"
|
|
Object.defineProperty(exports, propName, { value: 42, writable: true });
|
|
|
|
|
|
Object.defineProperty(exports, "bad1", { });
|
|
Object.defineProperty(exports, "bad2", { get() { return 12 }, value: "no" });
|
|
Object.defineProperty(exports, "bad3", { writable: true });
|
|
|
|
// @filename: importer.js
|
|
const mod = require("./mod1");
|
|
mod.thing;
|
|
mod.other;
|
|
mod.prop;
|
|
mod.bad1;
|
|
mod.bad2;
|
|
mod.bad3;
|
|
|
|
|
|
mod.thing = 0;
|
|
mod.other = 0;
|
|
mod.prop = 0;
|
|
mod.bad1 = 0;
|
|
mod.bad2 = 0;
|
|
mod.bad3 = 0;
|