summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/toString/string-object.js
blob: 834a4f41b9c99ee8bd89031a4883f240f37e18e5 (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.tostring
description: >
  If called on a String object, returns [[StringData]] slot
info: |
  String.prototype.toString ( )

  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 toString = String.prototype.toString;

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

reportCompare(0, 0);