-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c436736
commit f28e424
Showing
4 changed files
with
553 additions
and
0 deletions.
There are no files selected for viewing
117 changes: 117 additions & 0 deletions
117
tests/baselines/reference/destructuringWithLiteralInitializers.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
//// [destructuringWithLiteralInitializers.ts] | ||
// (arg: { x: any, y: any }) => void | ||
function f1({ x, y }) { } | ||
f1({ x: 1, y: 1 }); | ||
|
||
function f2({ x, y = 0 }) { } | ||
f2({ x: 1 }); | ||
f2({ x: 1, y: 1 }); | ||
|
||
// (arg: { x?: number, y?: number }) => void | ||
function f3({ x = 0, y = 0 }) { } | ||
f3({}); | ||
f3({ x: 1 }); | ||
f3({ y: 1 }); | ||
f3({ x: 1, y: 1 }); | ||
|
||
// (arg?: { x: number, y: number }) => void | ||
function f4({ x, y } = { x: 0, y: 0 }) { } | ||
f4(); | ||
f4({ x: 1, y: 1 }); | ||
|
||
// (arg?: { x: number, y?: number }) => void | ||
function f5({ x, y = 0 } = { x: 0 }) { } | ||
f5(); | ||
f5({ x: 1 }); | ||
f5({ x: 1, y: 1 }); | ||
|
||
// (arg?: { x?: number, y?: number }) => void | ||
function f6({ x = 0, y = 0 } = {}) { } | ||
f6(); | ||
f6({}); | ||
f6({ x: 1 }); | ||
f6({ y: 1 }); | ||
f6({ x: 1, y: 1 }); | ||
|
||
// (arg: [any, any]) => void | ||
function g1([x, y]) { } | ||
g1([1, 1]); | ||
|
||
// (arg: [number, number]) => void | ||
function g2([x = 0, y = 0]) { } | ||
g2([1, 1]); | ||
|
||
// (arg?: [any, any]) => void | ||
function g3([x, y] = []) { } | ||
g3(); | ||
g3([1, 1]); | ||
|
||
// (arg?: [number, number]) => void | ||
function g4([x, y] = [0, 0]) { } | ||
g4(); | ||
g4([1, 1]); | ||
|
||
|
||
//// [destructuringWithLiteralInitializers.js] | ||
// (arg: { x: any, y: any }) => void | ||
function f1(_a) { | ||
var x = _a.x, y = _a.y; | ||
} | ||
f1({ x: 1, y: 1 }); | ||
function f2(_a) { | ||
var x = _a.x, _b = _a.y, y = _b === void 0 ? 0 : _b; | ||
} | ||
f2({ x: 1 }); | ||
f2({ x: 1, y: 1 }); | ||
// (arg: { x?: number, y?: number }) => void | ||
function f3(_a) { | ||
var _b = _a.x, x = _b === void 0 ? 0 : _b, _c = _a.y, y = _c === void 0 ? 0 : _c; | ||
} | ||
f3({}); | ||
f3({ x: 1 }); | ||
f3({ y: 1 }); | ||
f3({ x: 1, y: 1 }); | ||
// (arg?: { x: number, y: number }) => void | ||
function f4(_a) { | ||
var _b = _a === void 0 ? { x: 0, y: 0 } : _a, x = _b.x, y = _b.y; | ||
} | ||
f4(); | ||
f4({ x: 1, y: 1 }); | ||
// (arg?: { x: number, y?: number }) => void | ||
function f5(_a) { | ||
var _b = _a === void 0 ? { x: 0 } : _a, x = _b.x, _c = _b.y, y = _c === void 0 ? 0 : _c; | ||
} | ||
f5(); | ||
f5({ x: 1 }); | ||
f5({ x: 1, y: 1 }); | ||
// (arg?: { x?: number, y?: number }) => void | ||
function f6(_a) { | ||
var _b = _a === void 0 ? {} : _a, _c = _b.x, x = _c === void 0 ? 0 : _c, _d = _b.y, y = _d === void 0 ? 0 : _d; | ||
} | ||
f6(); | ||
f6({}); | ||
f6({ x: 1 }); | ||
f6({ y: 1 }); | ||
f6({ x: 1, y: 1 }); | ||
// (arg: [any, any]) => void | ||
function g1(_a) { | ||
var x = _a[0], y = _a[1]; | ||
} | ||
g1([1, 1]); | ||
// (arg: [number, number]) => void | ||
function g2(_a) { | ||
var _b = _a[0], x = _b === void 0 ? 0 : _b, _c = _a[1], y = _c === void 0 ? 0 : _c; | ||
} | ||
g2([1, 1]); | ||
// (arg?: [any, any]) => void | ||
function g3(_a) { | ||
var _b = _a === void 0 ? [] : _a, x = _b[0], y = _b[1]; | ||
} | ||
g3(); | ||
g3([1, 1]); | ||
// (arg?: [number, number]) => void | ||
function g4(_a) { | ||
var _b = _a === void 0 ? [0, 0] : _a, x = _b[0], y = _b[1]; | ||
} | ||
g4(); | ||
g4([1, 1]); |
150 changes: 150 additions & 0 deletions
150
tests/baselines/reference/destructuringWithLiteralInitializers.symbols
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
=== tests/cases/conformance/es6/destructuring/destructuringWithLiteralInitializers.ts === | ||
// (arg: { x: any, y: any }) => void | ||
function f1({ x, y }) { } | ||
>f1 : Symbol(f1, Decl(destructuringWithLiteralInitializers.ts, 0, 0)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 1, 13)) | ||
>y : Symbol(y, Decl(destructuringWithLiteralInitializers.ts, 1, 16)) | ||
|
||
f1({ x: 1, y: 1 }); | ||
>f1 : Symbol(f1, Decl(destructuringWithLiteralInitializers.ts, 0, 0)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 2, 4)) | ||
>y : Symbol(y, Decl(destructuringWithLiteralInitializers.ts, 2, 10)) | ||
|
||
function f2({ x, y = 0 }) { } | ||
>f2 : Symbol(f2, Decl(destructuringWithLiteralInitializers.ts, 2, 19)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 4, 13)) | ||
>y : Symbol(y, Decl(destructuringWithLiteralInitializers.ts, 4, 16)) | ||
|
||
f2({ x: 1 }); | ||
>f2 : Symbol(f2, Decl(destructuringWithLiteralInitializers.ts, 2, 19)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 5, 4)) | ||
|
||
f2({ x: 1, y: 1 }); | ||
>f2 : Symbol(f2, Decl(destructuringWithLiteralInitializers.ts, 2, 19)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 6, 4)) | ||
>y : Symbol(y, Decl(destructuringWithLiteralInitializers.ts, 6, 10)) | ||
|
||
// (arg: { x?: number, y?: number }) => void | ||
function f3({ x = 0, y = 0 }) { } | ||
>f3 : Symbol(f3, Decl(destructuringWithLiteralInitializers.ts, 6, 19)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 9, 13)) | ||
>y : Symbol(y, Decl(destructuringWithLiteralInitializers.ts, 9, 20)) | ||
|
||
f3({}); | ||
>f3 : Symbol(f3, Decl(destructuringWithLiteralInitializers.ts, 6, 19)) | ||
|
||
f3({ x: 1 }); | ||
>f3 : Symbol(f3, Decl(destructuringWithLiteralInitializers.ts, 6, 19)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 11, 4)) | ||
|
||
f3({ y: 1 }); | ||
>f3 : Symbol(f3, Decl(destructuringWithLiteralInitializers.ts, 6, 19)) | ||
>y : Symbol(y, Decl(destructuringWithLiteralInitializers.ts, 12, 4)) | ||
|
||
f3({ x: 1, y: 1 }); | ||
>f3 : Symbol(f3, Decl(destructuringWithLiteralInitializers.ts, 6, 19)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 13, 4)) | ||
>y : Symbol(y, Decl(destructuringWithLiteralInitializers.ts, 13, 10)) | ||
|
||
// (arg?: { x: number, y: number }) => void | ||
function f4({ x, y } = { x: 0, y: 0 }) { } | ||
>f4 : Symbol(f4, Decl(destructuringWithLiteralInitializers.ts, 13, 19)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 16, 13)) | ||
>y : Symbol(y, Decl(destructuringWithLiteralInitializers.ts, 16, 16)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 16, 24)) | ||
>y : Symbol(y, Decl(destructuringWithLiteralInitializers.ts, 16, 30)) | ||
|
||
f4(); | ||
>f4 : Symbol(f4, Decl(destructuringWithLiteralInitializers.ts, 13, 19)) | ||
|
||
f4({ x: 1, y: 1 }); | ||
>f4 : Symbol(f4, Decl(destructuringWithLiteralInitializers.ts, 13, 19)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 18, 4)) | ||
>y : Symbol(y, Decl(destructuringWithLiteralInitializers.ts, 18, 10)) | ||
|
||
// (arg?: { x: number, y?: number }) => void | ||
function f5({ x, y = 0 } = { x: 0 }) { } | ||
>f5 : Symbol(f5, Decl(destructuringWithLiteralInitializers.ts, 18, 19)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 21, 13)) | ||
>y : Symbol(y, Decl(destructuringWithLiteralInitializers.ts, 21, 16)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 21, 28)) | ||
|
||
f5(); | ||
>f5 : Symbol(f5, Decl(destructuringWithLiteralInitializers.ts, 18, 19)) | ||
|
||
f5({ x: 1 }); | ||
>f5 : Symbol(f5, Decl(destructuringWithLiteralInitializers.ts, 18, 19)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 23, 4)) | ||
|
||
f5({ x: 1, y: 1 }); | ||
>f5 : Symbol(f5, Decl(destructuringWithLiteralInitializers.ts, 18, 19)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 24, 4)) | ||
>y : Symbol(y, Decl(destructuringWithLiteralInitializers.ts, 24, 10)) | ||
|
||
// (arg?: { x?: number, y?: number }) => void | ||
function f6({ x = 0, y = 0 } = {}) { } | ||
>f6 : Symbol(f6, Decl(destructuringWithLiteralInitializers.ts, 24, 19)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 27, 13)) | ||
>y : Symbol(y, Decl(destructuringWithLiteralInitializers.ts, 27, 20)) | ||
|
||
f6(); | ||
>f6 : Symbol(f6, Decl(destructuringWithLiteralInitializers.ts, 24, 19)) | ||
|
||
f6({}); | ||
>f6 : Symbol(f6, Decl(destructuringWithLiteralInitializers.ts, 24, 19)) | ||
|
||
f6({ x: 1 }); | ||
>f6 : Symbol(f6, Decl(destructuringWithLiteralInitializers.ts, 24, 19)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 30, 4)) | ||
|
||
f6({ y: 1 }); | ||
>f6 : Symbol(f6, Decl(destructuringWithLiteralInitializers.ts, 24, 19)) | ||
>y : Symbol(y, Decl(destructuringWithLiteralInitializers.ts, 31, 4)) | ||
|
||
f6({ x: 1, y: 1 }); | ||
>f6 : Symbol(f6, Decl(destructuringWithLiteralInitializers.ts, 24, 19)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 32, 4)) | ||
>y : Symbol(y, Decl(destructuringWithLiteralInitializers.ts, 32, 10)) | ||
|
||
// (arg: [any, any]) => void | ||
function g1([x, y]) { } | ||
>g1 : Symbol(g1, Decl(destructuringWithLiteralInitializers.ts, 32, 19)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 35, 13)) | ||
>y : Symbol(y, Decl(destructuringWithLiteralInitializers.ts, 35, 15)) | ||
|
||
g1([1, 1]); | ||
>g1 : Symbol(g1, Decl(destructuringWithLiteralInitializers.ts, 32, 19)) | ||
|
||
// (arg: [number, number]) => void | ||
function g2([x = 0, y = 0]) { } | ||
>g2 : Symbol(g2, Decl(destructuringWithLiteralInitializers.ts, 36, 11)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 39, 13)) | ||
>y : Symbol(y, Decl(destructuringWithLiteralInitializers.ts, 39, 19)) | ||
|
||
g2([1, 1]); | ||
>g2 : Symbol(g2, Decl(destructuringWithLiteralInitializers.ts, 36, 11)) | ||
|
||
// (arg?: [any, any]) => void | ||
function g3([x, y] = []) { } | ||
>g3 : Symbol(g3, Decl(destructuringWithLiteralInitializers.ts, 40, 11)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 43, 13)) | ||
>y : Symbol(y, Decl(destructuringWithLiteralInitializers.ts, 43, 15)) | ||
|
||
g3(); | ||
>g3 : Symbol(g3, Decl(destructuringWithLiteralInitializers.ts, 40, 11)) | ||
|
||
g3([1, 1]); | ||
>g3 : Symbol(g3, Decl(destructuringWithLiteralInitializers.ts, 40, 11)) | ||
|
||
// (arg?: [number, number]) => void | ||
function g4([x, y] = [0, 0]) { } | ||
>g4 : Symbol(g4, Decl(destructuringWithLiteralInitializers.ts, 45, 11)) | ||
>x : Symbol(x, Decl(destructuringWithLiteralInitializers.ts, 48, 13)) | ||
>y : Symbol(y, Decl(destructuringWithLiteralInitializers.ts, 48, 15)) | ||
|
||
g4(); | ||
>g4 : Symbol(g4, Decl(destructuringWithLiteralInitializers.ts, 45, 11)) | ||
|
||
g4([1, 1]); | ||
>g4 : Symbol(g4, Decl(destructuringWithLiteralInitializers.ts, 45, 11)) | ||
|
Oops, something went wrong.