TypeScript/tests/baselines/reference/sourceMapValidationVariables.types

17 lines
209 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/sourceMapValidationVariables.ts ===
var a = 10;
>a : number
var b;
>b : any
var c = 10, d, e;
>c : number
>d : any
>e : any
var c2, d2 = 10;
>c2 : any
>d2 : number