mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
49 lines
723 B
TypeScript
49 lines
723 B
TypeScript
// @declaration: true
|
|
|
|
class C1 {
|
|
x: this;
|
|
f(x: this): this { return undefined; }
|
|
constructor(x: this) { }
|
|
}
|
|
|
|
class C2 {
|
|
[x: string]: this;
|
|
}
|
|
|
|
interface Foo<T> {
|
|
x: T;
|
|
y: this;
|
|
}
|
|
|
|
class C3 {
|
|
a: this[];
|
|
b: [this, this];
|
|
c: this | Date;
|
|
d: this & Date;
|
|
e: (((this)));
|
|
f: (x: this) => this;
|
|
g: new (x: this) => this;
|
|
h: Foo<this>;
|
|
i: Foo<this | (() => this)>;
|
|
j: (x: any) => x is this;
|
|
}
|
|
|
|
class C4 {
|
|
x1 = { a: this };
|
|
x2 = [this];
|
|
x3 = [{ a: this }];
|
|
x4 = () => this;
|
|
f1() {
|
|
return { a: this };
|
|
}
|
|
f2() {
|
|
return [this];
|
|
}
|
|
f3() {
|
|
return [{ a: this }];
|
|
}
|
|
f4() {
|
|
return () => this;
|
|
}
|
|
}
|