| Index: dart/site/try/src/compilation.dart
|
| diff --git a/dart/site/try/src/compilation.dart b/dart/site/try/src/compilation.dart
|
| index 2fe3e2bfa04249ceab323f681d7717c7d83be768..63595fa7710bb2ddc1912eb8c94ea0cc8b380396 100644
|
| --- a/dart/site/try/src/compilation.dart
|
| +++ b/dart/site/try/src/compilation.dart
|
| @@ -14,9 +14,6 @@ import 'dart:html' show
|
| Worker,
|
| window;
|
|
|
| -import 'dart:async' show
|
| - Timer;
|
| -
|
| import 'dart:isolate' show
|
| ReceivePort,
|
| SendPort;
|
| @@ -289,18 +286,3 @@ self.importScripts("$url");
|
| console.appendText('$message\n');
|
| }
|
| }
|
| -
|
| -void compilerIsolate(SendPort port) {
|
| - // TODO(ahe): Restore when restoring deferred loading.
|
| - // lazy.load().then((_) => port.listen(compile));
|
| - ReceivePort replyTo = new ReceivePort();
|
| - port.send(replyTo.sendPort);
|
| - replyTo.listen((message) {
|
| - List list = message as List;
|
| - try {
|
| - compile(list[0], list[1]);
|
| - } catch (exception, stack) {
|
| - port.send('$exception\n$stack');
|
| - }
|
| - });
|
| -}
|
|
|