| Index: lib/runtime/dart/_interceptors.js
|
| diff --git a/lib/runtime/dart/_interceptors.js b/lib/runtime/dart/_interceptors.js
|
| index 58ebc1e15f638478016ac4d35ddcb8b61f7b6091..e7ad5c2b9bff695d1d460ec26cc1f06a34de4529 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);
|
| +});
|
|
|