| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 // Test of "recursive" imports using the dart2js compiler API. | 5 // Test of "recursive" imports using the dart2js compiler API. |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import '../../sdk/lib/_internal/compiler/compiler.dart'; | 8 import '../../sdk/lib/_internal/compiler/compiler.dart'; |
| 9 import 'dart:uri'; | 9 import 'dart:uri'; |
| 10 | 10 |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 if (kind == Diagnostic.WARNING) { | 74 if (kind == Diagnostic.WARNING) { |
| 75 warningCount++; | 75 warningCount++; |
| 76 } else if (kind == Diagnostic.ERROR) { | 76 } else if (kind == Diagnostic.ERROR) { |
| 77 errorCount++; | 77 errorCount++; |
| 78 } else { | 78 } else { |
| 79 throw kind; | 79 throw kind; |
| 80 } | 80 } |
| 81 } | 81 } |
| 82 } | 82 } |
| 83 | 83 |
| 84 String code = compile(new Uri.fromComponents(scheme: 'main'), | 84 Future<String> result = |
| 85 new Uri.fromComponents(scheme: 'lib', path: '/'), | 85 compile(new Uri.fromComponents(scheme: 'main'), |
| 86 new Uri.fromComponents(scheme: 'package', path: '/'), | 86 new Uri.fromComponents(scheme: 'lib', path: '/'), |
| 87 provider, handler).value; | 87 new Uri.fromComponents(scheme: 'package', path: '/'), |
| 88 Expect.isNull(code); | 88 provider, handler); |
| 89 Expect.isTrue(10 < count); | 89 result.then((String code) { |
| 90 // Two warnings for each time RECURSIVE_MAIN is read, except the | 90 Expect.isNull(code); |
| 91 // first time. | 91 Expect.isTrue(10 < count); |
| 92 Expect.equals(2 * (count - 1), warningCount); | 92 // Two warnings for each time RECURSIVE_MAIN is read, except the |
| 93 Expect.equals(1, errorCount); | 93 // first time. |
| 94 Expect.equals(2 * (count - 1), warningCount); |
| 95 Expect.equals(1, errorCount); |
| 96 }, onError: (AsyncError e) { |
| 97 throw 'Compilation failed'; |
| 98 }); |
| 94 } | 99 } |
| OLD | NEW |