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

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

Issue 733463002: Add console to dart:io for synchronus writing to stdout and stderr (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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/console_script.dart
diff --git a/tests/standalone/io/console_script.dart b/tests/standalone/io/console_script.dart
new file mode 100644
index 0000000000000000000000000000000000000000..ce6603c9ba92b15cecd11e4f6163645e4266e7f7
--- /dev/null
+++ b/tests/standalone/io/console_script.dart
@@ -0,0 +1,21 @@
+// Copyright (c) 2014, 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.
+
+import "dart:io";
+
+void test(ConsoleSink sink) {
+ sink.add([65, 66, 67]);
+ sink.write('DEF');
+ sink.writeAll(['GH', 'I']);
+ sink.writeCharCode(74);
+ sink.writeln('KLM');
+}
+
+void main(List<String> arguments) {
+ console.log('stdout');
+ console.error('stderr');
+ test(console.log);
+ test(console.error);
+ exit(1);
+}

Powered by Google App Engine
This is Rietveld 408576698