1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
=== tests/cases/compiler/unknownSymbols1.ts ===
var x = asdf;
>x : any
>asdf : any
var y: asdf;
>y : any
function foo(x: asdf, y: number): asdf { }
>foo : (x: any, y: number) => any
>x : any
>y : number
function foo2() {
>foo2 : () => any
return asdf;
>asdf : any
}
var z = <asdf>x; // should be an error
>z : any
><asdf>x : any
>x : any
class C<T> {
>C : C<T>
foo: asdf;
>foo : any
bar: C<asdf>;
>bar : C<any>
}
class C2 implements asdf { }
>C2 : C2
interface I extends adsf { }
class C3 { constructor(x: any) { } }
>C3 : C3
>x : any
class C4 extends C3 {
>C4 : C4
>C3 : C3
constructor() {
super(asdf);
>super(asdf) : void
>super : typeof C3
>asdf : any
}
}
var x2 = this.asdf; // no error, this is any
>x2 : any
>this.asdf : any
>this : any
>asdf : any
class C5 {
>C5 : C5
constructor() {
this.asdf = asdf;
>this.asdf = asdf : any
>this.asdf : any
>this : this
>asdf : any
>asdf : any
}
}
|