OLD | NEW |
1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 var $jsonSerializeAdapter; | 5 var $jsonSerializeAdapter; |
6 | 6 |
7 (function() { | 7 (function(global, shared, exports) { |
8 | 8 |
9 "use strict"; | 9 "use strict"; |
10 | 10 |
11 %CheckIsBootstrapping(); | 11 %CheckIsBootstrapping(); |
12 | 12 |
13 var GlobalJSON = global.JSON; | 13 var GlobalJSON = global.JSON; |
14 | 14 |
15 // ------------------------------------------------------------------- | 15 // ------------------------------------------------------------------- |
16 | 16 |
17 function Revive(holder, name, reviver) { | 17 function Revive(holder, name, reviver) { |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 // ------------------------------------------------------------------- | 232 // ------------------------------------------------------------------- |
233 // JSON Builtins | 233 // JSON Builtins |
234 | 234 |
235 $jsonSerializeAdapter = function(key, object) { | 235 $jsonSerializeAdapter = function(key, object) { |
236 var holder = {}; | 236 var holder = {}; |
237 holder[key] = object; | 237 holder[key] = object; |
238 // No need to pass the actual holder since there is no replacer function. | 238 // No need to pass the actual holder since there is no replacer function. |
239 return JSONSerialize(key, holder, UNDEFINED, new InternalArray(), "", ""); | 239 return JSONSerialize(key, holder, UNDEFINED, new InternalArray(), "", ""); |
240 } | 240 } |
241 | 241 |
242 })(); | 242 }) |
OLD | NEW |