summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Set/prototype/values/this-not-object-throw-symbol.js
blob: bd88d0fabf10a803555ce5182c767313f8d988a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-set.prototype.values
description: >
    Set.prototype.values ( )

    ...
    2. Return CreateSetIterator(S, "value").


    23.2.5.1 CreateSetIterator Abstract Operation

    1. If Type(set) is not Object, throw a TypeError exception.
    ...
features: [Symbol]
---*/

assert.throws(TypeError, function() {
  Set.prototype.values.call(Symbol());
});

assert.throws(TypeError, function() {
  var s = new Set();
  s.values.call(Symbol());
});

reportCompare(0, 0);