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}
10 lines
270 B
JavaScript
10 lines
270 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-destructuring-bind
|
|
'use strict';
|
|
|
|
const { x : x, y : y } = { x : 1, y : 2 };
|
|
x++;
|