summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/flatten/symbol-object-create-null-depth-throws.js
blob: af58ce6b7d20662e512db629a36a98d1eda100b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2018 Shilpi Jain and Michael Ficarra. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.prototype.flatten
description: >
    if the argument is a Symbol or Object null, it throws exception
features: [Array.prototype.flatten]
---*/

assert.throws(TypeError, function() {
  [].flatten(Symbol());
}, 'symbol value');

assert.throws(TypeError, function() {
  [].flatten(Object.create(null));
}, 'object create null');