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

Unified Diff: tests/standalone/io/process_echo_util.dart

Issue 37033002: dart:io | Remove uses of Options class from standalone tests. Mark Options deprecated. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove commented lines from standalone.status. Created 7 years, 2 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: tests/standalone/io/process_echo_util.dart
diff --git a/tests/standalone/io/process_echo_util.dart b/tests/standalone/io/process_echo_util.dart
index 1cc501d49771fc04b23d8660e6dc8d33b74e2356..1c6d17e8c069d9c1ce3cb82b61b0153104ce8d16 100644
--- a/tests/standalone/io/process_echo_util.dart
+++ b/tests/standalone/io/process_echo_util.dart
@@ -4,6 +4,6 @@
import "dart:io";
-void main() {
- new Options().arguments.forEach(print);
+void main(List<String> arguments) {
+ arguments.forEach(print);
}
« no previous file with comments | « tests/standalone/io/process_check_arguments_script.dart ('k') | tests/standalone/io/process_std_io_script.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698