Index: pkg/front_end/lib/src/fasta/scanner/testing/scanner_chain.dart |
diff --git a/pkg/front_end/lib/src/fasta/scanner/testing/scanner_chain.dart b/pkg/front_end/lib/src/fasta/scanner/testing/scanner_chain.dart |
deleted file mode 100644 |
index 05020c780aae1e4729e518b1ad69aa930fec4ef6..0000000000000000000000000000000000000000 |
--- a/pkg/front_end/lib/src/fasta/scanner/testing/scanner_chain.dart |
+++ /dev/null |
@@ -1,33 +0,0 @@ |
-// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
-// for details. All rights reserved. Use of this source code is governed by a |
-// BSD-style license that can be found in the LICENSE.md file. |
- |
-library fasta.scanner.testing.scanner_chain; |
- |
-import 'package:testing/testing.dart'; |
- |
-import '../../scanner.dart'; |
- |
-import '../io.dart'; |
- |
-class Read extends Step<TestDescription, List<int>, ChainContext> { |
- const Read(); |
- |
- String get name => "read"; |
- |
- Future<Result<List<int>>> run( |
- TestDescription input, ChainContext context) async { |
- return pass(await readBytesFromFile(input.uri)); |
- } |
-} |
- |
-class Scan extends Step<List<int>, ScannerResult, ChainContext> { |
- const Scan(); |
- |
- String get name => "scan"; |
- |
- Future<Result<ScannerResult>> run( |
- List<int> bytes, ChainContext context) async { |
- return pass(scan(bytes)); |
- } |
-} |