Index: lib/runtime/dart/async.js |
diff --git a/lib/runtime/dart/async.js b/lib/runtime/dart/async.js |
index 8bf8b9cdb12e66cf73cc3000a0d270fce9c48b91..69a708a71221f2d306d0ff984ec7077aa3803e2e 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 _js_helper = dart.lazyImport(_js_helper); |
-var _isolate_helper = dart.lazyImport(_isolate_helper); |
-var collection = dart.import(collection); |
-(function(exports, core, _internal, _js_helper, _isolate_helper, collection) { |
+dart.library('dart/async.js', null, /* Imports */[ |
+ 'dart/core.js', |
+ 'dart/_internal.js', |
+ 'dart/collection.js' |
+], /* Lazy imports */[ |
+ 'dart/_js_helper.js', |
+ 'dart/_isolate_helper.js' |
+], function(exports, core, _internal, collection, _js_helper, _isolate_helper) { |
'use strict'; |
function _invokeErrorHandler(errorHandler, error, stackTrace) { |
if (dart.is(errorHandler, ZoneBinaryCallback)) { |
@@ -5907,4 +5908,4 @@ var collection = dart.import(collection); |
exports.ZoneDelegate = ZoneDelegate; |
exports.Zone = Zone; |
exports.runZoned = runZoned; |
-})(async, core, _internal, _js_helper, _isolate_helper, collection); |
+}); |