mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-12-15 00:06:16 -06:00
Update baseline after merge again
This commit is contained in:
parent
0dd660960d
commit
2c45e7252c
@ -0,0 +1,11 @@
|
||||
=== tests/cases/conformance/es6/destructuring/arrayAssignmentPatternWithAny.ts ===
|
||||
var a: any;
|
||||
>a : Symbol(a, Decl(arrayAssignmentPatternWithAny.ts, 0, 3))
|
||||
|
||||
var x: string;
|
||||
>x : Symbol(x, Decl(arrayAssignmentPatternWithAny.ts, 1, 3))
|
||||
|
||||
[x] = a;
|
||||
>x : Symbol(x, Decl(arrayAssignmentPatternWithAny.ts, 1, 3))
|
||||
>a : Symbol(a, Decl(arrayAssignmentPatternWithAny.ts, 0, 3))
|
||||
|
||||
@ -0,0 +1,12 @@
|
||||
=== tests/cases/compiler/destructuringWithNewExpression.ts ===
|
||||
class C {
|
||||
>C : Symbol(C, Decl(destructuringWithNewExpression.ts, 0, 0))
|
||||
|
||||
x = 0;
|
||||
>x : Symbol(x, Decl(destructuringWithNewExpression.ts, 0, 9))
|
||||
}
|
||||
|
||||
var { x } = new C;
|
||||
>x : Symbol(x, Decl(destructuringWithNewExpression.ts, 4, 5))
|
||||
>C : Symbol(C, Decl(destructuringWithNewExpression.ts, 0, 0))
|
||||
|
||||
@ -0,0 +1,4 @@
|
||||
=== tests/cases/compiler/destructuringWithNumberLiteral.ts ===
|
||||
var { toExponential } = 0;
|
||||
>toExponential : Symbol(toExponential, Decl(destructuringWithNumberLiteral.ts, 0, 5))
|
||||
|
||||
@ -0,0 +1,7 @@
|
||||
=== tests/cases/conformance/es6/destructuring/nonIterableRestElement1.ts ===
|
||||
var c = {};
|
||||
>c : Symbol(c, Decl(nonIterableRestElement1.ts, 0, 3))
|
||||
|
||||
[...c] = ["", 0];
|
||||
>c : Symbol(c, Decl(nonIterableRestElement1.ts, 0, 3))
|
||||
|
||||
@ -0,0 +1,7 @@
|
||||
=== tests/cases/conformance/es6/destructuring/nonIterableRestElement2.ts ===
|
||||
var c = {};
|
||||
>c : Symbol(c, Decl(nonIterableRestElement2.ts, 0, 3))
|
||||
|
||||
[...c] = ["", 0];
|
||||
>c : Symbol(c, Decl(nonIterableRestElement2.ts, 0, 3))
|
||||
|
||||
@ -0,0 +1,9 @@
|
||||
=== tests/cases/conformance/es6/destructuring/restElementWithAssignmentPattern5.ts ===
|
||||
var s: string, s2: string;
|
||||
>s : Symbol(s, Decl(restElementWithAssignmentPattern5.ts, 0, 3))
|
||||
>s2 : Symbol(s2, Decl(restElementWithAssignmentPattern5.ts, 0, 14))
|
||||
|
||||
[...[s, s2]] = ["", ""];
|
||||
>s : Symbol(s, Decl(restElementWithAssignmentPattern5.ts, 0, 3))
|
||||
>s2 : Symbol(s2, Decl(restElementWithAssignmentPattern5.ts, 0, 14))
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user