summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/valueOf/string-object.js
blob: 68ae9893920166cc8550a875fb61070cec1aa58d (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) 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-string.prototype.valueof
description: >
  If called on a String object, returns [[StringData]] slot
info: |
  String.prototype.valueOf ( )

  1. Return ? thisStringValue(this value).

  thisStringValue ( value )

  [...]
  2. If Type(value) is Object and value has a [[StringData]] internal slot, then
    a. Let s be value.[[StringData]].
    b. Assert: Type(s) is String.
    c. Return s.
---*/

var valueOf = String.prototype.valueOf;

assert.sameValue(Object('').valueOf(), '');
assert.sameValue(valueOf.call(new String('str')), 'str');
assert.sameValue('a' + new String('b'), 'ab');

reportCompare(0, 0);