mirror of https://github.com/tc39/test262.git
41 lines
759 B
JavaScript
41 lines
759 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: >
|
|
An ArrayAssignmentPattern without an AssignmentElementList requires
|
|
iterable values and throws for other values.
|
|
es6id: 12.14.5.2
|
|
---*/
|
|
|
|
var value, result;
|
|
|
|
assert.throws(TypeError, function() {
|
|
[] = undefined;
|
|
});
|
|
|
|
assert.throws(TypeError, function() {
|
|
[] = null;
|
|
});
|
|
|
|
assert.throws(TypeError, function() {
|
|
[] = true;
|
|
});
|
|
|
|
assert.throws(TypeError, function() {
|
|
[] = 1;
|
|
});
|
|
|
|
result = [] = 'string literal';
|
|
|
|
assert.sameValue(result, 'string literal');
|
|
|
|
assert.throws(TypeError, function() {
|
|
[] = Symbol('s');
|
|
});
|
|
|
|
value = [];
|
|
result = [] = value;
|
|
|
|
assert.sameValue(result, value);
|