| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import 'package:expect/expect.dart'; | 5 import 'package:expect/expect.dart'; |
| 6 import 'package:async_helper/async_helper.dart'; | 6 import 'package:async_helper/async_helper.dart'; |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 main() { | 9 main() { |
| 10 Completer done = new Completer(); | 10 Completer done = new Completer(); |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 Expect.equals(1234, result); | 55 Expect.equals(1234, result); |
| 56 | 56 |
| 57 done.future.whenComplete(() { | 57 done.future.whenComplete(() { |
| 58 Expect.listEquals( | 58 Expect.listEquals( |
| 59 ["zone forked", "forked.run", "run closure", "executed run", | 59 ["zone forked", "forked.run", "run closure", "executed run", |
| 60 "forked.run", "executed run2", "forked.run", "run closure 2", | 60 "forked.run", "executed run2", "forked.run", "run closure 2", |
| 61 "after nested scheduleMicrotask", "forked.run", "run closure 3"], | 61 "after nested scheduleMicrotask", "forked.run", "run closure 3"], |
| 62 events); | 62 events); |
| 63 asyncEnd(); | 63 asyncEnd(); |
| 64 }); | 64 }); |
| 65 |
| 66 var zone1 = Zone.ROOT.fork(); |
| 67 var zone2 = Zone.ROOT.fork(); |
| 68 var zone3 = Zone.ROOT.fork(); |
| 69 asyncStart(); |
| 70 asyncStart(); |
| 71 zone1.run(() { |
| 72 var future = new Future.value(); |
| 73 zone2.run(() { |
| 74 future.then((_) { |
| 75 Expect.identical(zone2, Zone.current); |
| 76 asyncEnd(); |
| 77 }); |
| 78 }); |
| 79 zone3.run(() { |
| 80 future.then((_) { |
| 81 Expect.identical(zone3, Zone.current); |
| 82 asyncEnd(); |
| 83 }); |
| 84 }); |
| 85 }); |
| 65 } | 86 } |
| OLD | NEW |