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
|
=== tests/cases/compiler/unknownSymbols2.ts ===
module M {
>M : typeof M
var x: asdf;
>x : asdf
var y = x + asdf;
>y : any
>x + asdf : any
>x : asdf
>asdf : any
var z = <asdf>x; // should be an error
>z : asdf
><asdf>x : asdf
>x : asdf
if (asdf) {
>asdf : any
}
else if (qwerty) {
>qwerty : any
}
try {
}
catch (asdf) { // no error
>asdf : any
}
switch (asdf) {
>asdf : any
case qwerty:
>qwerty : any
break;
default:
break;
}
var a = () => asdf;
>a : () => any
>() => asdf : () => any
>asdf : any
var b = (asdf) => { return qwerty };
>b : (asdf: any) => any
>(asdf) => { return qwerty } : (asdf: any) => any
>asdf : any
>qwerty : any
module N {
>N : typeof N
var x = 1;
>x : number
>1 : 1
}
import c = N;
>c : typeof N
>N : typeof N
import d = asdf;
>d : any
>asdf : any
}
|