Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Side by Side Diff: src/json.js

Issue 1127983003: Use function wrapper argument to expose internal arrays to native scripts. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebased and fixed nits Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/harmony-typedarray.js ('k') | src/math.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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(global, shared, exports) { 7 (function(global, shared, exports) {
8 8
9 "use strict"; 9 "use strict";
10 10
11 %CheckIsBootstrapping(); 11 %CheckIsBootstrapping();
12 12
13 // -------------------------------------------------------------------
14 // Imports
15
13 var GlobalJSON = global.JSON; 16 var GlobalJSON = global.JSON;
17 var InternalArray = shared.InternalArray;
14 18
15 // ------------------------------------------------------------------- 19 // -------------------------------------------------------------------
16 20
17 function Revive(holder, name, reviver) { 21 function Revive(holder, name, reviver) {
18 var val = holder[name]; 22 var val = holder[name];
19 if (IS_OBJECT(val)) { 23 if (IS_OBJECT(val)) {
20 if (IS_ARRAY(val)) { 24 if (IS_ARRAY(val)) {
21 var length = val.length; 25 var length = val.length;
22 for (var i = 0; i < length; i++) { 26 for (var i = 0; i < length; i++) {
23 var newElement = Revive(val, %_NumberToString(i), reviver); 27 var newElement = Revive(val, %_NumberToString(i), reviver);
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 // JSON Builtins 237 // JSON Builtins
234 238
235 $jsonSerializeAdapter = function(key, object) { 239 $jsonSerializeAdapter = function(key, object) {
236 var holder = {}; 240 var holder = {};
237 holder[key] = object; 241 holder[key] = object;
238 // No need to pass the actual holder since there is no replacer function. 242 // No need to pass the actual holder since there is no replacer function.
239 return JSONSerialize(key, holder, UNDEFINED, new InternalArray(), "", ""); 243 return JSONSerialize(key, holder, UNDEFINED, new InternalArray(), "", "");
240 } 244 }
241 245
242 }) 246 })
OLDNEW
« no previous file with comments | « src/harmony-typedarray.js ('k') | src/math.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698