| Index: tests/compiler/dart2js/dill_loader_test.dart
|
| diff --git a/tests/compiler/dart2js/dill_loader_test.dart b/tests/compiler/dart2js/dill_loader_test.dart
|
| index de9e66c2c3ef92c90c683eb29775490ea8eed31b..2e7a8a4ea4730d8931dfd1d9df68125a246d4188 100644
|
| --- a/tests/compiler/dart2js/dill_loader_test.dart
|
| +++ b/tests/compiler/dart2js/dill_loader_test.dart
|
| @@ -11,6 +11,7 @@ import 'package:compiler/src/common_elements.dart';
|
| import 'package:compiler/src/diagnostics/spannable.dart' show Spannable;
|
| import 'package:compiler/src/elements/entities.dart'
|
| show LibraryEntity, ClassEntity;
|
| +import 'package:compiler/src/io/source_file.dart' show Binary;
|
| import 'package:compiler/src/library_loader.dart' show ScriptLoader;
|
| import 'package:compiler/src/script.dart' show Script;
|
| import 'package:compiler/src/apiimpl.dart' show CompilerImpl;
|
| @@ -38,6 +39,9 @@ class TestScriptLoader implements ScriptLoader {
|
|
|
| Future<Script> readScript(Uri uri, [Spannable spannable]) =>
|
| compiler.readScript(uri, spannable);
|
| +
|
| + Future<Binary> readBinary(Uri uri, [Spannable spannable]) =>
|
| + compiler.readBinary(uri, spannable);
|
| }
|
|
|
| /// Test that the compiler can successfully read in .dill kernel files rather
|
|
|