| Index: lib/runtime/dart/convert.js
|
| diff --git a/lib/runtime/dart/convert.js b/lib/runtime/dart/convert.js
|
| index 4ff12edfdb7645f2f13511ca154430a124f0429c..2ff643b1e5a9fab22b48aec4f969f9bca24dc2c8 100644
|
| --- a/lib/runtime/dart/convert.js
|
| +++ b/lib/runtime/dart/convert.js
|
| @@ -1,9 +1,9 @@
|
| -var convert = dart.defineLibrary(convert, {});
|
| -var core = dart.import(core);
|
| -var async = dart.import(async);
|
| -var typed_data = dart.import(typed_data);
|
| -var _internal = dart.import(_internal);
|
| -var collection = dart.import(collection);
|
| +dart.defineLibrary('convert');
|
| +dart.import('core');
|
| +dart.import('async');
|
| +dart.import('typed_data');
|
| +dart.import('_internal');
|
| +dart.import('collection');
|
| (function(exports, core, async, typed_data, _internal, collection) {
|
| 'use strict';
|
| let Codec$ = dart.generic(function(S, T) {
|
|
|