| OLD | NEW |
| 1 library IsolatesTest; | 1 library IsolatesTest; |
| 2 import '../../pkg/unittest/lib/unittest.dart'; | 2 import '../../pkg/unittest/lib/unittest.dart'; |
| 3 import '../../pkg/unittest/lib/html_config.dart'; | 3 import '../../pkg/unittest/lib/html_config.dart'; |
| 4 import 'dart:async'; |
| 4 import 'dart:html'; | 5 import 'dart:html'; |
| 5 import 'dart:convert'; | 6 import 'dart:convert'; |
| 6 import 'dart:isolate' as isolate; | 7 import 'dart:isolate' as isolate; |
| 7 | 8 |
| 8 String responseFor(message) => 'response for $message'; | 9 String responseFor(message) => 'response for $message'; |
| 9 | 10 |
| 10 void isolateEntry(isolate.SendPort initialReplyTo) { | 11 void isolateEntry(isolate.SendPort initialReplyTo) { |
| 11 var port = new isolate.ReceivePort(); | 12 var port = new isolate.ReceivePort(); |
| 12 initialReplyTo.send(port.sendPort); | 13 initialReplyTo.send(port.sendPort); |
| 13 | 14 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 guardAsync(() { | 60 guardAsync(() { |
| 60 expect(response, equals(responseFor(msg2))); | 61 expect(response, equals(responseFor(msg2))); |
| 61 callback(); | 62 callback(); |
| 62 }); | 63 }); |
| 63 }); | 64 }); |
| 64 }); | 65 }); |
| 65 }); | 66 }); |
| 66 }); | 67 }); |
| 67 }); | 68 }); |
| 68 } | 69 } |
| OLD | NEW |