Index: lib/runtime/dart/async.js |
diff --git a/lib/runtime/dart/async.js b/lib/runtime/dart/async.js |
index 8a226ac94581add794b5302a26563b43a152cd8e..6b731905b85b2c93f70a2977cae728ccbdc50f43 100644 |
--- a/lib/runtime/dart/async.js |
+++ b/lib/runtime/dart/async.js |
@@ -1,10 +1,11 @@ |
-var async = dart.defineLibrary(async, {}); |
-var core = dart.import(core); |
-var _internal = dart.import(_internal); |
-var _isolate_helper = dart.lazyImport(_isolate_helper); |
-var _js_helper = dart.import(_js_helper); |
-var collection = dart.import(collection); |
-(function(exports, core, _internal, _isolate_helper, _js_helper, collection) { |
+dart.library('dart/async.js', null, /* Imports */[ |
+ 'dart/core.js', |
+ 'dart/_internal.js', |
+ 'dart/_js_helper.js', |
+ 'dart/collection.js' |
+], /* Lazy imports */[ |
+ 'dart/_isolate_helper.js' |
+], function(exports, core, _internal, _js_helper, collection, _isolate_helper) { |
'use strict'; |
function _invokeErrorHandler(errorHandler, error, stackTrace) { |
if (dart.is(errorHandler, ZoneBinaryCallback)) { |
@@ -5906,4 +5907,4 @@ var collection = dart.import(collection); |
exports.ZoneDelegate = ZoneDelegate; |
exports.Zone = Zone; |
exports.runZoned = runZoned; |
-})(async, core, _internal, _isolate_helper, _js_helper, collection); |
+}); |