mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
13 lines
183 B
TypeScript
13 lines
183 B
TypeScript
|
class Base {
|
||
|
constructor(c) { }
|
||
|
}
|
||
|
class D extends Base {
|
||
|
private _t;
|
||
|
constructor() {
|
||
|
let x = {
|
||
|
j: this._t,
|
||
|
}
|
||
|
super(undefined);
|
||
|
}
|
||
|
}
|