summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/annexB/built-ins/escape/to-string-observe.js
blob: c9dcd49f99bd9367446562b0e903649d1a3e173a (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-escape-string
es6id: B.2.1.1
description: Observable operations from string coercion
info: |
    1. Let string be ? ToString(string).
---*/

var log, obj;

log = '';
obj = {
  toString: function() {
    log += 'toString';
  },
  valueOf: function() {
    log += 'valueOf';
  }
};

escape(obj);

assert.sameValue(log, 'toString');

log = '';
obj = {
  toString: null,
  valueOf: function() {
    log += 'valueOf';
  }
};

escape(obj);

assert.sameValue(log, 'valueOf');

log = '';
obj = {
  toString: function() {
    log += 'toString';
    return {};
  },
  valueOf: function() {
    log += 'valueOf';
  }
};

escape(obj);

assert.sameValue(log, 'toStringvalueOf');

reportCompare(0, 0);