mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
23 lines
397 B
TypeScript
23 lines
397 B
TypeScript
// @allowJs: true
|
|
// @checkJs: true
|
|
// @declaration: true
|
|
// @emitDeclarationOnly: true
|
|
// @filename: thisPropertyAssignmentCircular.js
|
|
export class Foo {
|
|
constructor() {
|
|
this.foo = "Hello";
|
|
}
|
|
slicey() {
|
|
this.foo = this.foo.slice();
|
|
}
|
|
m() {
|
|
this.foo
|
|
}
|
|
}
|
|
|
|
/** @class */
|
|
function C() {
|
|
this.x = 0;
|
|
this.x = function() { this.x.toString(); }
|
|
}
|