| Index: lib/runtime/dart/collection.js
|
| diff --git a/lib/runtime/dart/collection.js b/lib/runtime/dart/collection.js
|
| index f3f099e0179a5e4b3eceb3d715b648b5479a8e3b..e168d1ea64edac3b634900889b7b909be209cc1a 100644
|
| --- a/lib/runtime/dart/collection.js
|
| +++ b/lib/runtime/dart/collection.js
|
| @@ -1,9 +1,10 @@
|
| -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) {
|
| +dart.library('dart/collection.js', null, /* Imports */[
|
| + 'dart/core.js'
|
| +], /* Lazy imports */[
|
| + 'dart/_internal.js',
|
| + 'dart/_js_helper.js',
|
| + 'dart/math.js'
|
| +], function(exports, core, _internal, _js_helper, math) {
|
| 'use strict';
|
| let _source = Symbol('_source');
|
| let UnmodifiableListView$ = dart.generic(function(E) {
|
| @@ -6000,4 +6001,4 @@ var math = dart.lazyImport(math);
|
| exports.LinkedHashSetCell = LinkedHashSetCell;
|
| exports.LinkedHashSetIterator$ = LinkedHashSetIterator$;
|
| exports.LinkedHashSetIterator = LinkedHashSetIterator;
|
| -})(collection, _internal, core, _js_helper, math);
|
| +});
|
|
|