Merge pull request #23956 from Kingwl/emit-var-at-top

emit temporary vars at the top of the scope
This commit is contained in:
Ron Buckton
2018-05-10 12:20:13 -07:00
committed by GitHub
307 changed files with 11824 additions and 11746 deletions

View File

@@ -0,0 +1,5 @@
function a () {
let x: number;
let y: any
({ x, ...y } = ({ } as any));
}