| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 // This is a regression test for issue 22853. | 5 // This is a regression test for issue 22853. |
| 6 | 6 |
| 7 import "dart:async"; | 7 import "dart:async"; |
| 8 import "package:expect/expect.dart"; | 8 import "package:expect/expect.dart"; |
| 9 import "package:async_helper/async_helper.dart"; | 9 import "package:async_helper/async_helper.dart"; |
| 10 | 10 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 } | 59 } |
| 60 | 60 |
| 61 // Release whoever is currently waiting. | 61 // Release whoever is currently waiting. |
| 62 void release([v]) { | 62 void release([v]) { |
| 63 if (_completer != null) { | 63 if (_completer != null) { |
| 64 _completer.complete(v); | 64 _completer.complete(v); |
| 65 _completer = null; | 65 _completer = null; |
| 66 } | 66 } |
| 67 } | 67 } |
| 68 } | 68 } |
| OLD | NEW |