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

Unified Diff: src/runtime.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/regexp.js ('k') | src/runtime/runtime-object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/runtime.js
diff --git a/src/runtime.js b/src/runtime.js
index 004f9bf61bcdd1a088f12696b7216c0ead17f1c6..5e7e956c22a7b96458a308e44d48d1fe0ce2b511 100644
--- a/src/runtime.js
+++ b/src/runtime.js
@@ -83,7 +83,7 @@ var $toPrimitive;
var $toString;
var $toUint32;
-(function() {
+(function(global, shared, exports) {
%CheckIsBootstrapping();
@@ -997,4 +997,4 @@ $toPrimitive = ToPrimitive;
$toString = ToString;
$toUint32 = ToUint32;
-})();
+})
« no previous file with comments | « src/regexp.js ('k') | src/runtime/runtime-object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698