| Index: lib/runtime/dart/isolate.js
|
| diff --git a/lib/runtime/dart/isolate.js b/lib/runtime/dart/isolate.js
|
| index dbe814e117f7542569bba9860ed6fb9374991179..c44f1014524883e97e0fe2e467999e6eb4d10c6c 100644
|
| --- a/lib/runtime/dart/isolate.js
|
| +++ b/lib/runtime/dart/isolate.js
|
| @@ -1,7 +1,7 @@
|
| -var isolate = dart.defineLibrary(isolate, {});
|
| -var core = dart.import(core);
|
| -var _isolate_helper = dart.lazyImport(_isolate_helper);
|
| -var async = dart.import(async);
|
| +dart.defineLibrary('isolate');
|
| +dart.import('core');
|
| +dart.lazyImport('_isolate_helper');
|
| +dart.import('async');
|
| (function(exports, core, _isolate_helper, async) {
|
| 'use strict';
|
| class Capability extends core.Object {
|
|
|