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

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: Address comments 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
« no previous file with comments | « lib/runtime/dart/convert.js ('k') | lib/runtime/dart/isolate.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/core.js
diff --git a/lib/runtime/dart/core.js b/lib/runtime/dart/core.js
index 21455b57da6bd7466e7a11f48390e038b23c53b4..338c9bf38fe3e1ad1134a533ec4ca5068f3c49e3 100644
--- a/lib/runtime/dart/core.js
+++ b/lib/runtime/dart/core.js
@@ -1,10 +1,11 @@
-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 convert = dart.lazyImport(convert);
-(function(exports, _js_helper, _internal, collection, _interceptors, convert) {
+dart.library('dart/core', null, /* Imports */[
+], /* Lazy imports */[
+ 'dart/_js_helper',
+ 'dart/_internal',
+ 'dart/collection',
+ 'dart/_interceptors',
+ 'dart/convert'
+], function(exports, _js_helper, _internal, collection, _interceptors, convert) {
'use strict';
class Object {
constructor() {
@@ -3362,4 +3363,4 @@ var convert = dart.lazyImport(convert);
exports.Symbol = Symbol;
exports.Type = Type;
exports.Uri = Uri;
-})(core, _js_helper, _internal, collection, _interceptors, convert);
+});
« no previous file with comments | « lib/runtime/dart/convert.js ('k') | lib/runtime/dart/isolate.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698