Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(85)

Unified Diff: pkg/front_end/lib/src/fasta/scanner/testing/scanner_chain.dart

Issue 2722223006: Move all main methods to tool/. (Closed)
Patch Set: Update tools/patch_sdk.dart. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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));
- }
-}
« no previous file with comments | « pkg/front_end/lib/src/fasta/scanner/scanner_main.dart ('k') | pkg/front_end/lib/src/fasta/testing/scanner_chain.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698