summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Number/S8.12.8_A3.js
blob: 8026aeb04e9e7578ece09de8cdcbaf5e7f5533b8 (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
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: |
    We overload valueOf method so it return non Primitive value
    Thus [[DefaultValue]] must return Object.toString() value
es5id: 8.12.8_A3
description: >
    Try to overload toString method, that returned Primitive, and
    valueOf method, that returned new Object
---*/

try
{
  var __obj = {
    toString: function() {
      return "1"
    },
    valueOf: function() {
      return new Object();
    }
  }

  assert.sameValue(
    Number(__obj),
    1,
    'Number("{toString: function() {return "1"}, valueOf: function() {return new Object();}}) must return 1'
  );
}
catch (e)
{
  throw new Test262Error('#1.2: var __obj = {toNumber: function() {return "1"}, valueOf: function() {return new Object();}}; Number(__obj) === 1. Actual: ' + (e));
}

reportCompare(0, 0);