mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
20 lines
388 B
TypeScript
20 lines
388 B
TypeScript
// @allowJs: true
|
|
// @checkJs: true
|
|
// @noEmit: true
|
|
// @esModuleInterop: true
|
|
// @filename: mod1.js
|
|
class Alias {
|
|
bar() { return 1 }
|
|
}
|
|
module.exports = Alias;
|
|
|
|
// @filename: main.js
|
|
import A from './mod1'
|
|
A.prototype.foo = 0
|
|
A.prototype.func = function() { this._func = 0; }
|
|
Object.defineProperty(A.prototype, "def", { value: 0 });
|
|
new A().bar
|
|
new A().foo
|
|
new A().func()
|
|
new A().def
|