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

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: Moar feedbcks 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
(Empty)
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
3 // found in the LICENSE file.
4 //
5 // Flags: --harmony-destructuring
6
7 (function TestObjectLiteralPattern() {
8 var { x : x, y : y } = { x : 1, y : 2 };
9 assertEquals(1, x);
10 assertEquals(2, y);
11
12 var {z} = { z : 3 };
arv (Not doing code reviews) 2015/05/11 14:25:16 Maybe add let and const tests too and add TDZ chec
Dmitry Lomov (no reviews) 2015/05/11 14:53:26 This CL is just a rudimentary implementation of de
13 assertEquals(3, z);
14 }());
OLDNEW
« src/pattern-rewriter.cc ('K') | « src/pattern-rewriter.cc ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698