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

Unified Diff: src/math.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/json.js ('k') | src/messages.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/math.js
diff --git a/src/math.js b/src/math.js
index 16083d791e8a9d4197f01f9cbccaddd9c7b08743..af2d0acda06c28c2aeab06cb51b2a2ff47a9982a 100644
--- a/src/math.js
+++ b/src/math.js
@@ -10,7 +10,7 @@ var $floor;
var $max;
var $min;
-(function() {
+(function(global, shared, exports) {
"use strict";
@@ -360,4 +360,4 @@ $floor = MathFloorJS;
$max = MathMax;
$min = MathMin;
-})();
+})
« no previous file with comments | « src/json.js ('k') | src/messages.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698