summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T2.js
blob: 129656b8889cc330f8c7a33f6f7c5108d82092c5 (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
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: |
    The valueOf function is not generic, it cannot be transferred
    to other kinds of objects for use as a method and there is should be
    a TypeError exception if its this value is not a Boolean object
esid: sec-boolean.prototype.valueof
description: transferring to the Number objects
---*/

assert.throws(TypeError, () => {
  var s1 = new Number();
  s1.valueOf = Boolean.prototype.valueOf;
  s1.valueOf();
});

assert.throws(TypeError, () => {
  var s2 = new Number();
  s2.myvalueOf = Boolean.prototype.valueOf;
  s2.myvalueOf();
});

reportCompare(0, 0);