OLD | NEW |
1 // Copyright (c) 2016, the Dartino project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dartino 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.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
4 | 4 |
5 library tests.fletchc.incremental.common; | 5 library tests.dartino_compiler.incremental.common; |
6 | 6 |
7 export 'dart:async' show | 7 export 'dart:async' show |
8 Future; | 8 Future; |
9 | 9 |
10 export 'feature_test.dart' show | 10 export 'feature_test.dart' show |
11 NoArgFuture; | 11 NoArgFuture; |
12 | 12 |
13 export 'program_result.dart' show | 13 export 'program_result.dart' show |
14 EncodedResult; | 14 EncodedResult; |
15 | 15 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 }).whenComplete(() { | 85 }).whenComplete(() { |
86 // The test is done, the Dart VM may exit. So we close the port. | 86 // The test is done, the Dart VM may exit. So we close the port. |
87 done.close(); | 87 done.close(); |
88 }); | 88 }); |
89 } else { | 89 } else { |
90 // This can't happen. | 90 // This can't happen. |
91 throw "No tests specified."; | 91 throw "No tests specified."; |
92 } | 92 } |
93 } | 93 } |
94 } | 94 } |
OLD | NEW |