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

Unified Diff: lib/runtime/dart/math.js

Issue 1122133003: fixes #157, renaming local library identifiers if needed. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: fix core.Symbol reference 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
Index: lib/runtime/dart/math.js
diff --git a/lib/runtime/dart/math.js b/lib/runtime/dart/math.js
index 16abfaec7497520753be012e76dc80c88c9414a1..ec2ad3bd855f27c4bbbde981f532d9ab2e7a55ea 100644
--- a/lib/runtime/dart/math.js
+++ b/lib/runtime/dart/math.js
@@ -1,5 +1,5 @@
-var math;
-(function(exports) {
+var math, core, _js_helper;
+(function(exports, core, _js_helper) {
'use strict';
class _JenkinsSmiHash extends core.Object {
static combine(hash, value) {
@@ -460,4 +460,4 @@ var math;
exports.sqrt = sqrt;
exports.exp = exp;
exports.log = log;
-})(math || (math = {}));
+})(math || (math = {}), core, _js_helper || (_js_helper = {}));

Powered by Google App Engine
This is Rietveld 408576698