mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
26 lines
663 B
TypeScript
26 lines
663 B
TypeScript
// @allowJs: true
|
|
// @checkJs: true
|
|
// @noEmit: true
|
|
// @strict: true
|
|
// @target: es6
|
|
// @filename: lateBoundAssignmentDeclarationSupport6.js
|
|
// currently unsupported
|
|
const _sym = Symbol();
|
|
const _str = "my-fake-sym";
|
|
|
|
function F() {
|
|
}
|
|
F.prototype.defsAClass = true;
|
|
Object.defineProperty(F.prototype, _str, {value: "ok"});
|
|
Object.defineProperty(F.prototype, _sym, {value: "ok"});
|
|
const inst = new F();
|
|
const _y = inst[_str];
|
|
const _z = inst[_sym];
|
|
module.exports.F = F;
|
|
module.exports.S = _sym;
|
|
// @filename: usage.js
|
|
const x = require("./lateBoundAssignmentDeclarationSupport6.js");
|
|
const inst = new x.F();
|
|
const y = inst["my-fake-sym"];
|
|
const z = inst[x.S];
|