Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(102)

Side by Side Diff: test/mjsunit/harmony/destructuring.js

Issue 1130623004: [destructuring] Implement basic binding destructuring infrastructure (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // MODULE 5 // Flags: --harmony-destructuring
6 6
7 var a, b; 7 (function TestObjectLiteralPattern() {
8 export { a as c }; 8 var { x : x, y : y } = { x : 1, y : 2 };
arv (Not doing code reviews) 2015/05/08 19:09:49 Also: var {z} = {z: 3}; Should work for free sin
Dmitry Lomov (no reviews) 2015/05/11 11:07:28 Done.
9 export { a, b as c }; 9 assertEquals(1, x);
10 assertEquals(2, y);
11 }());
OLDNEW
« src/pattern-matcher.cc ('K') | « src/pattern-matcher.cc ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698