Update baselines after rebase

This commit is contained in:
Jason Freeman 2015-04-13 17:34:02 -07:00
parent 15e39f72ea
commit 25fafd3096
3 changed files with 15 additions and 9 deletions

View File

@ -1,12 +1,14 @@
=== tests/cases/conformance/es6/destructuring/nonIterableRestElement1.ts ===
var c = {};
>c : {}
>c : {}, Symbol(c, Decl(nonIterableRestElement1.ts, 0, 3))
>{} : {}
[...c] = ["", 0];
>[...c] = ["", 0] : (string | number)[]
>[...c] : {}[]
>...c : unknown
>c : {}
>...c : any
>c : {}, Symbol(c, Decl(nonIterableRestElement1.ts, 0, 3))
>["", 0] : (string | number)[]
>"" : string
>0 : number

View File

@ -1,12 +1,14 @@
=== tests/cases/conformance/es6/destructuring/nonIterableRestElement2.ts ===
var c = {};
>c : {}
>c : {}, Symbol(c, Decl(nonIterableRestElement2.ts, 0, 3))
>{} : {}
[...c] = ["", 0];
>[...c] = ["", 0] : (string | number)[]
>[...c] : {}[]
>...c : any
>c : {}
>c : {}, Symbol(c, Decl(nonIterableRestElement2.ts, 0, 3))
>["", 0] : (string | number)[]
>"" : string
>0 : number

View File

@ -1,14 +1,16 @@
=== tests/cases/conformance/es6/destructuring/restElementWithAssignmentPattern5.ts ===
var s: string, s2: string;
>s : string
>s2 : string
>s : string, Symbol(s, Decl(restElementWithAssignmentPattern5.ts, 0, 3))
>s2 : string, Symbol(s2, Decl(restElementWithAssignmentPattern5.ts, 0, 14))
[...[s, s2]] = ["", ""];
>[...[s, s2]] = ["", ""] : string[]
>[...[s, s2]] : string[]
>...[s, s2] : string
>[s, s2] : string[]
>s : string
>s2 : string
>s : string, Symbol(s, Decl(restElementWithAssignmentPattern5.ts, 0, 3))
>s2 : string, Symbol(s2, Decl(restElementWithAssignmentPattern5.ts, 0, 14))
>["", ""] : string[]
>"" : string
>"" : string