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

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

Issue 1145243013: Check for duplicate library names (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 6 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/core.js
diff --git a/lib/runtime/dart/core.js b/lib/runtime/dart/core.js
index 1eac80377c7c89eab07b7075358d231fc00895a9..c319d9295ce9cd108d8d3ff9827c8469589ff02c 100644
--- a/lib/runtime/dart/core.js
+++ b/lib/runtime/dart/core.js
@@ -1,10 +1,10 @@
-var core = dart.defineLibrary(core, {});
-var _js_helper = dart.lazyImport(_js_helper);
-var _internal = dart.lazyImport(_internal);
-var collection = dart.lazyImport(collection);
-var _interceptors = dart.lazyImport(_interceptors);
-var math = dart.lazyImport(math);
-var convert = dart.lazyImport(convert);
+dart.defineLibrary('core');
+dart.lazyImport('_js_helper');
+dart.lazyImport('_internal');
+dart.lazyImport('collection');
+dart.lazyImport('_interceptors');
+dart.lazyImport('math');
+dart.lazyImport('convert');
(function(exports, _js_helper, _internal, collection, _interceptors, math, convert) {
'use strict';
class Object {

Powered by Google App Engine
This is Rietveld 408576698