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

Unified Diff: dart/lib/compiler/implementation/scanner/d8_scanner_bench.dart

Issue 10164004: Remove frogsh. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased Created 8 years, 8 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
« no previous file with comments | « dart/frog/tests/native/native.status ('k') | dart/lib/compiler/implementation/scanner/motile_node.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/lib/compiler/implementation/scanner/d8_scanner_bench.dart
diff --git a/dart/lib/compiler/implementation/scanner/d8_scanner_bench.dart b/dart/lib/compiler/implementation/scanner/d8_scanner_bench.dart
deleted file mode 100644
index a722ec625a96ba21369e168c67c90a0a3a5d647e..0000000000000000000000000000000000000000
--- a/dart/lib/compiler/implementation/scanner/d8_scanner_bench.dart
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (c) 2011, 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 file.
-
-#library('d8_scanner_bench');
-#import('../../node/node.dart');
-#import('scannerlib.dart');
-#import('scanner_implementation.dart');
-#import('scanner_bench.dart');
-
-d8_read(String filename) native 'return read(filename)';
-
-class D8ScannerBench extends ScannerBench {
- int getBytes(String filename, void callback(bytes)) {
- // This actually returns a buffer, not a String.
- var s = d8_read(filename);
- callback(s);
- return s.length;
- }
-
- StringScanner makeScanner(bytes) => new StringScanner(bytes);
-
- void checkExistence(String filename) {
- }
-}
-
-main() {
- new D8ScannerBench().main(argv);
-}
« no previous file with comments | « dart/frog/tests/native/native.status ('k') | dart/lib/compiler/implementation/scanner/motile_node.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698