mirror of https://github.com/tc39/test262.git
21 lines
574 B
JavaScript
21 lines
574 B
JavaScript
// Copyright (C) 2015 the V8 project authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
description: >
|
|
Identifiers that appear as the DestructuringAssignmentTarget in an
|
|
AssignmentElement should take on the iterated value corresponding to their
|
|
position in the ArrayAssignmentPattern.
|
|
es6id: 12.14.5.3
|
|
flags: [noStrict]
|
|
---*/
|
|
|
|
var value = [2, 3];
|
|
var result, argument, eval;
|
|
|
|
result = [arguments, eval] = value;
|
|
|
|
assert.sameValue(result, value);
|
|
assert.sameValue(arguments, 2);
|
|
assert.sameValue(eval, 3);
|