| Index: lib/runtime/dart/_interceptors.js
|
| diff --git a/lib/runtime/dart/_interceptors.js b/lib/runtime/dart/_interceptors.js
|
| index 9f5cd7eead63a8e92661a661f86e2d261a583504..9eee3d1a383cf7cf50b5d468d30e7c366633184b 100644
|
| --- a/lib/runtime/dart/_interceptors.js
|
| +++ b/lib/runtime/dart/_interceptors.js
|
| @@ -1,10 +1,11 @@
|
| -var _interceptors = dart.defineLibrary(_interceptors, {});
|
| -var core = dart.import(core);
|
| -var _internal = dart.import(_internal);
|
| -var _js_helper = dart.lazyImport(_js_helper);
|
| -var collection = dart.import(collection);
|
| -var math = dart.import(math);
|
| -(function(exports, core, _internal, _js_helper, collection, math) {
|
| +dart.library('dart/_interceptors.js', null, /* Imports */[
|
| + 'dart/core.js',
|
| + 'dart/_internal.js',
|
| + 'dart/collection.js',
|
| + 'dart/math.js'
|
| +], /* Lazy imports */[
|
| + 'dart/_js_helper.js'
|
| +], function(exports, core, _internal, collection, math, _js_helper) {
|
| 'use strict';
|
| let JSArray$ = dart.generic(function(E) {
|
| class JSArray extends core.Object {
|
| @@ -1435,4 +1436,4 @@ var math = dart.import(math);
|
| exports.JavaScriptObject = JavaScriptObject;
|
| exports.PlainJavaScriptObject = PlainJavaScriptObject;
|
| exports.UnknownJavaScriptObject = UnknownJavaScriptObject;
|
| -})(_interceptors, core, _internal, _js_helper, collection, math);
|
| +});
|
|
|