| Index: lib/runtime/dart/core.js
|
| diff --git a/lib/runtime/dart/core.js b/lib/runtime/dart/core.js
|
| index 21455b57da6bd7466e7a11f48390e038b23c53b4..a8f6a0c179d2d04c04d10ae4b7f3dc7198ebcb48 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.js', null, /* Imports */[
|
| +], /* Lazy imports */[
|
| + 'dart/_js_helper.js',
|
| + 'dart/_internal.js',
|
| + 'dart/collection.js',
|
| + 'dart/_interceptors.js',
|
| + 'dart/convert.js'
|
| +], 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);
|
| +});
|
|
|