| Index: tools/coverage.dart
 | 
| diff --git a/tools/coverage.dart b/tools/coverage.dart
 | 
| index 20811d1e8120497191bb1b126b4d6829f013665f..350019de3c508126dfe2470aad98e09aabafa531 100644
 | 
| --- a/tools/coverage.dart
 | 
| +++ b/tools/coverage.dart
 | 
| @@ -13,6 +13,7 @@
 | 
|  //   --verbose   see the stdout and stderr output of the debug
 | 
|  //               target process.
 | 
|  
 | 
| +import "dart:convert";
 | 
|  import "dart:io";
 | 
|  import "dart:utf";
 | 
|  import "dart:json" as JSON;
 | 
| @@ -214,7 +215,7 @@ class Debugger {
 | 
|    Debugger(this.targetProcess) {
 | 
|      var stdoutStringStream = targetProcess.stdout
 | 
|          .transform(new StringDecoder())
 | 
| -        .transform(new LineTransformer());
 | 
| +        .transform(new LineSplitter());
 | 
|      stdoutStringStream.listen((line) {
 | 
|        if (showDebuggeeOutput) {
 | 
|          print("TARG: $line");
 | 
| @@ -231,7 +232,7 @@ class Debugger {
 | 
|  
 | 
|      var stderrStringStream = targetProcess.stderr
 | 
|          .transform(new StringDecoder())
 | 
| -        .transform(new LineTransformer());
 | 
| +        .transform(new LineSplitter());
 | 
|      stderrStringStream.listen((line) {
 | 
|        if (showDebuggeeOutput) {
 | 
|          print("TARG: $line");
 | 
| 
 |