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

Unified Diff: tests/standalone/debugger/debug_lib.dart

Issue 22927016: Remove the LineTransformer from dart:io (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Changed one status file Created 7 years, 4 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 | « tests/standalone/coverage_test.dart ('k') | tests/standalone/io/file_input_stream_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/debugger/debug_lib.dart
diff --git a/tests/standalone/debugger/debug_lib.dart b/tests/standalone/debugger/debug_lib.dart
index 79161c7d5dc43e9668e56f05edf4dd59f9395315..7be6854ee083d58516030e5f180af41b396c979d 100644
--- a/tests/standalone/debugger/debug_lib.dart
+++ b/tests/standalone/debugger/debug_lib.dart
@@ -7,6 +7,7 @@
library DartDebugger;
import "dart:async";
+import "dart:convert";
import "dart:io";
import "dart:math";
import "dart:utf";
@@ -393,7 +394,7 @@ class Debugger {
Debugger(this.targetProcess, this.script) {
var stdoutStringStream = targetProcess.stdout
.transform(new StringDecoder())
- .transform(new LineTransformer());
+ .transform(new LineSplitter());
stdoutStringStream.listen((line) {
print("TARG: $line");
if (line.startsWith("Debugger listening")) {
@@ -406,7 +407,7 @@ class Debugger {
var stderrStringStream = targetProcess.stderr
.transform(new StringDecoder())
- .transform(new LineTransformer());
+ .transform(new LineSplitter());
stderrStringStream.listen((line) {
print("TARG: $line");
});
« no previous file with comments | « tests/standalone/coverage_test.dart ('k') | tests/standalone/io/file_input_stream_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698