TypeScript/tests/baselines/reference/chainedAssignment2.types

33 lines
1 KiB
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/chainedAssignment2.ts ===
var a: string;
2015-04-13 23:01:57 +02:00
>a : string, Symbol(a, Decl(chainedAssignment2.ts, 0, 3))
2014-08-15 23:33:16 +02:00
var b: number;
2015-04-13 23:01:57 +02:00
>b : number, Symbol(b, Decl(chainedAssignment2.ts, 1, 3))
2014-08-15 23:33:16 +02:00
var c: boolean;
2015-04-13 23:01:57 +02:00
>c : boolean, Symbol(c, Decl(chainedAssignment2.ts, 2, 3))
2014-08-15 23:33:16 +02:00
var d: Date;
2015-04-13 23:01:57 +02:00
>d : Date, Symbol(d, Decl(chainedAssignment2.ts, 3, 3))
>Date : Date, Symbol(Date, Decl(lib.d.ts, 633, 23), Decl(lib.d.ts, 815, 11))
2014-08-15 23:33:16 +02:00
var e: RegExp;
2015-04-13 23:01:57 +02:00
>e : RegExp, Symbol(e, Decl(chainedAssignment2.ts, 4, 3))
>RegExp : RegExp, Symbol(RegExp, Decl(lib.d.ts, 825, 1), Decl(lib.d.ts, 876, 11))
2014-08-15 23:33:16 +02:00
a = b = c = d = e = null;
>a = b = c = d = e = null : null
2015-04-13 23:01:57 +02:00
>a : string, Symbol(a, Decl(chainedAssignment2.ts, 0, 3))
2014-08-15 23:33:16 +02:00
>b = c = d = e = null : null
2015-04-13 23:01:57 +02:00
>b : number, Symbol(b, Decl(chainedAssignment2.ts, 1, 3))
2014-08-15 23:33:16 +02:00
>c = d = e = null : null
2015-04-13 23:01:57 +02:00
>c : boolean, Symbol(c, Decl(chainedAssignment2.ts, 2, 3))
2014-08-15 23:33:16 +02:00
>d = e = null : null
2015-04-13 23:01:57 +02:00
>d : Date, Symbol(d, Decl(chainedAssignment2.ts, 3, 3))
2014-08-15 23:33:16 +02:00
>e = null : null
2015-04-13 23:01:57 +02:00
>e : RegExp, Symbol(e, Decl(chainedAssignment2.ts, 4, 3))
2015-04-13 21:36:11 +02:00
>null : null
2014-08-15 23:33:16 +02:00