7d1d978654
This is in preparation for the addition of --harmony-destructuring-assignment. BUG=v8:811 LOG=n Review URL: https://codereview.chromium.org/1450193002 Cr-Commit-Position: refs/heads/master@{#32098}
9 lines
343 B
JavaScript
9 lines
343 B
JavaScript
// Copyright 2015 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
//
|
|
// Flags: --harmony-default-parameters --harmony-destructuring-bind
|
|
|
|
((x, y = eval('x')) => assertEquals(42, y))(42);
|
|
((x, {y = eval('x')}) => assertEquals(42, y))(42, {});
|