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

Unified Diff: pkg/front_end/lib/src/fasta/scanner/main.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/main.dart
diff --git a/pkg/front_end/lib/src/fasta/scanner/main.dart b/pkg/front_end/lib/src/fasta/scanner/main.dart
deleted file mode 100644
index ccd6acbab21883a185e046854f78825ae9280aee..0000000000000000000000000000000000000000
--- a/pkg/front_end/lib/src/fasta/scanner/main.dart
+++ /dev/null
@@ -1,34 +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.main;
-
-import 'io.dart' show readBytesFromFileSync;
-
-import '../scanner.dart' show scan;
-
-scanAll(Map<Uri, List<int>> files) {
- Stopwatch sw = new Stopwatch()..start();
- int byteCount = 0;
- files.forEach((Uri uri, List<int> bytes) {
- scan(bytes);
- byteCount += bytes.length - 1;
- });
- sw.stop();
- print("Scanning files took: ${sw.elapsed}");
- print("Bytes/ms: ${byteCount/sw.elapsedMilliseconds}");
-}
-
-main(List<String> arguments) {
- Map<Uri, List<int>> files = <Uri, List<int>>{};
- Stopwatch sw = new Stopwatch()..start();
- for (String name in arguments) {
- Uri uri = Uri.base.resolve(name);
- List<int> bytes = readBytesFromFileSync(uri);
- files[uri] = bytes;
- }
- sw.stop();
- print("Reading files took: ${sw.elapsed}");
- scanAll(files);
-}
« no previous file with comments | « pkg/front_end/lib/src/fasta/scanner/bin/scanner.dart ('k') | pkg/front_end/lib/src/fasta/scanner/scanner_main.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698