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

Unified Diff: src/json.js

Issue 1132513003: Call builtin code wrapped in functions from the bootstrapper. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix extra natives 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/i18n.js ('k') | src/math.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/json.js
diff --git a/src/json.js b/src/json.js
index f20106ab69b9d8170fd5200ca17767bc7b56257d..f5ac6cb87ad4ef92c12f83aff295c4d38faa6496 100644
--- a/src/json.js
+++ b/src/json.js
@@ -4,7 +4,7 @@
var $jsonSerializeAdapter;
-(function() {
+(function(global, shared, exports) {
"use strict";
@@ -239,4 +239,4 @@ $jsonSerializeAdapter = function(key, object) {
return JSONSerialize(key, holder, UNDEFINED, new InternalArray(), "", "");
}
-})();
+})
« no previous file with comments | « src/i18n.js ('k') | src/math.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698