summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/toString/string-primitive.js
blob: 18ce6eb2956e7ce3e2cdc7e4d1f8ef21cc98c93d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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 String primitive, returns it
info: |
  String.prototype.toString ( )

  1. Return ? thisStringValue(this value).

  thisStringValue ( value )

  1. If Type(value) is String, return value.
---*/

var toString = String.prototype.toString;

assert.sameValue(''.toString(), '');
assert.sameValue(toString.call('str'), 'str');

reportCompare(0, 0);