| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library test_progress; | 5 library test_progress; |
| 6 | 6 |
| 7 import "dart:async"; | 7 import "dart:async"; |
| 8 import "dart:io"; | 8 import "dart:io"; |
| 9 import "dart:io" as io; | 9 import "dart:io" as io; |
| 10 import "dart:convert" show JSON; | 10 import "dart:convert" show JSON; |
| (...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 687 case 'line': | 687 case 'line': |
| 688 return new LineProgressIndicator(); | 688 return new LineProgressIndicator(); |
| 689 case 'verbose': | 689 case 'verbose': |
| 690 return new VerboseProgressIndicator(startTime); | 690 return new VerboseProgressIndicator(startTime); |
| 691 case 'status': | 691 case 'status': |
| 692 return new ProgressIndicator(startTime); | 692 return new ProgressIndicator(startTime); |
| 693 case 'buildbot': | 693 case 'buildbot': |
| 694 return new BuildbotProgressIndicator(startTime); | 694 return new BuildbotProgressIndicator(startTime); |
| 695 default: | 695 default: |
| 696 assert(false); | 696 assert(false); |
| 697 break; | 697 return null; |
| 698 } | 698 } |
| 699 } | 699 } |
| OLD | NEW |