Chromium Code Reviews| Index: tests/compiler/dart2js/exit_code_test.dart |
| diff --git a/tests/compiler/dart2js/exit_code_test.dart b/tests/compiler/dart2js/exit_code_test.dart |
| index bc4549e8305aa7b42e928ebe5f41f624cb68727f..8589e1b1d567ab65c44459bf3cc7eeb1b982aea0 100644 |
| --- a/tests/compiler/dart2js/exit_code_test.dart |
| +++ b/tests/compiler/dart2js/exit_code_test.dart |
| @@ -17,6 +17,7 @@ import 'package:compiler/implementation/dart2js.dart' as entry; |
| import 'package:compiler/implementation/dart2jslib.dart'; |
| import 'package:compiler/implementation/apiimpl.dart' as apiimpl; |
| import 'package:compiler/implementation/elements/elements.dart'; |
| +import 'package:compiler/implementation/library_loader.dart'; |
| import 'package:compiler/implementation/resolution/resolution.dart'; |
| import 'package:compiler/implementation/scanner/scannerlib.dart'; |
| import 'package:compiler/implementation/util/util.dart'; |
| @@ -48,9 +49,10 @@ class TestCompiler extends apiimpl.Compiler { |
| return super.run(uri); |
| } |
| - void onLibraryScanned(LibraryElement element) { |
| + Future onLibraryScanned(LibraryElement element, |
| + LibraryLoader loader) { |
|
floitsch
2014/06/24 09:01:54
one line?
Johnni Winther
2014/06/24 09:12:59
Done.
|
| test('Compiler.onLibraryScanned'); |
| - super.onLibraryScanned(element); |
| + return super.onLibraryScanned(element, loader); |
| } |
| Future onLibrariesLoaded(Map<Uri, LibraryElement> loadedLibraries) { |