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

Unified Diff: lib/runtime/dart/collection.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: rebase and format 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 | « lib/runtime/dart/async.js ('k') | lib/runtime/dart/convert.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/collection.js
diff --git a/lib/runtime/dart/collection.js b/lib/runtime/dart/collection.js
index afd7171ec5f1ae57efb972202145c3875361da4e..5229600f8a95e32debb7b1034f0c3a67d687df1b 100644
--- a/lib/runtime/dart/collection.js
+++ b/lib/runtime/dart/collection.js
@@ -1,5 +1,9 @@
-var collection;
-(function(exports) {
+var collection = dart.defineLibrary(collection, {});
+var _internal = dart.lazyImport(_internal);
+var core = dart.import(core);
+var _js_helper = dart.lazyImport(_js_helper);
+var math = dart.lazyImport(math);
+(function(exports, _internal, core, _js_helper, math) {
'use strict';
let _source = Symbol('_source');
let UnmodifiableListView$ = dart.generic(function(E) {
@@ -5153,4 +5157,4 @@ var collection;
exports.LinkedHashSetCell = LinkedHashSetCell;
exports.LinkedHashSetIterator$ = LinkedHashSetIterator$;
exports.LinkedHashSetIterator = LinkedHashSetIterator;
-})(collection || (collection = {}));
+})(collection, _internal, core, _js_helper, math);
« no previous file with comments | « lib/runtime/dart/async.js ('k') | lib/runtime/dart/convert.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698