summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArrays/of/argument-number-value-throws.js
blob: 3d8a49deddfdfc7da6dacff1bf00922f1f7bb3f1 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.of
description: >
  Return abrupt from object value
info: |
  22.2.2.2 %TypedArray%.of ( ...items )

  ...
  7. Repeat, while k < len
    ...
    c. Perform ? Set(newObj, Pk, kValue, true).
  ...
includes: [testTypedArray.js]
features: [TypedArray]
---*/

testWithTypedArrayConstructors(function(TA, N) {
  var lastValue = false;

  var obj1 = {
    valueOf() {
      lastValue = "obj1";
      return N(42);
    }
  };
  var obj2 = {
    valueOf() {
      lastValue = "obj2";
      throw new Test262Error();
    }
  };

  assert.throws(Test262Error, function() {
    TA.of(obj1, obj2, obj1);
  });

  assert.sameValue(lastValue, "obj2");
});