| Index: pkg/front_end/test/src/base/processed_options_test.dart
|
| diff --git a/pkg/front_end/test/src/base/processed_options_test.dart b/pkg/front_end/test/src/base/processed_options_test.dart
|
| index e2d435405a5f4a7abd238840bde54dee101bb50d..0d1c4a1712aaccfd0ea77106a419390fc7b00046 100644
|
| --- a/pkg/front_end/test/src/base/processed_options_test.dart
|
| +++ b/pkg/front_end/test/src/base/processed_options_test.dart
|
| @@ -8,7 +8,7 @@ import 'package:front_end/compiler_options.dart';
|
| import 'package:front_end/memory_file_system.dart';
|
| import 'package:front_end/src/base/processed_options.dart';
|
| import 'package:front_end/src/fasta/compiler_context.dart';
|
| -import 'package:front_end/src/fasta/fasta.dart' show ByteSink;
|
| +import 'package:front_end/src/fasta/util/bytes_sink.dart' show BytesSink;
|
| import 'package:front_end/src/fasta/fasta_codes.dart';
|
| import 'package:kernel/binary/ast_to_binary.dart' show BinaryPrinter;
|
| import 'package:kernel/kernel.dart'
|
| @@ -93,7 +93,7 @@ class ProcessedOptionsTest {
|
| }
|
|
|
| void writeMockSummaryTo(Uri uri) {
|
| - var sink = new ByteSink();
|
| + var sink = new BytesSink();
|
| new BinaryPrinter(sink).writeProgramFile(mockSummary);
|
| fileSystem.entityForUri(uri).writeAsBytesSync(sink.builder.takeBytes());
|
| }
|
|
|