summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/JSON/stringify/value-object-proxy.js
blob: 6a64a3cfee8a5cb94c247a6fa17e0fddd563844a (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
55
56
57
58
59
// 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-serializejsonobject
description: >
  Proxy of an object is treated as regular object.
info: |
  JSON.stringify ( value [ , replacer [ , space ] ] )

  [...]
  12. Return ? SerializeJSONProperty(the empty String, wrapper).

  SerializeJSONProperty ( key, holder )

  [...]
  10. If Type(value) is Object and IsCallable(value) is false, then
    [...]
    c. Return ? SerializeJSONObject(value).

  SerializeJSONObject ( value )

  [...]
  6. Else,
    a. Let K be ? EnumerableOwnPropertyNames(value, "key").
  7. Let partial be a new empty List.
  8. For each element P of K, do
    a. Let strP be ? SerializeJSONProperty(P, value).
features: [Proxy]
---*/

var objectProxy = new Proxy({}, {
  getOwnPropertyDescriptor: function() {
    return {value: 1, writable: true, enumerable: true, configurable: true};
  },
  get: function() {
    return 1;
  },
  ownKeys: function() {
    return ['a', 'b'];
  },
});

assert.sameValue(
  JSON.stringify(objectProxy), '{"a":1,"b":1}', 'proxy for an object'
);
assert.sameValue(
  JSON.stringify({l1: {l2: objectProxy}}),
  '{"l1":{"l2":{"a":1,"b":1}}}',
  'proxy for an object (nested)'
);

var objectProxyProxy = new Proxy(objectProxy, {});
assert.sameValue(
  JSON.stringify({l1: {l2: objectProxyProxy}}),
  '{"l1":{"l2":{"a":1,"b":1}}}',
  'proxy for a proxy for an object (nested)'
);

reportCompare(0, 0);