| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 unittest.load_exception; | 5 library unittest.runner.load_exception; |
| 6 | 6 |
| 7 import 'dart:isolate'; | 7 import 'dart:isolate'; |
| 8 | 8 |
| 9 import 'package:path/path.dart' as p; | 9 import 'package:path/path.dart' as p; |
| 10 | 10 |
| 11 import 'utils.dart'; | 11 import '../utils.dart'; |
| 12 | 12 |
| 13 class LoadException implements Exception { | 13 class LoadException implements Exception { |
| 14 final String path; | 14 final String path; |
| 15 | 15 |
| 16 final innerError; | 16 final innerError; |
| 17 | 17 |
| 18 LoadException(this.path, this.innerError); | 18 LoadException(this.path, this.innerError); |
| 19 | 19 |
| 20 String toString() { | 20 String toString() { |
| 21 var buffer = new StringBuffer('Failed to load "$path":'); | 21 var buffer = new StringBuffer('Failed to load "$path":'); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 33 "Uncaught Error: Load Error: FileSystemException: ", | 33 "Uncaught Error: Load Error: FileSystemException: ", |
| 34 ""); | 34 ""); |
| 35 innerString = innerString.split("Stack Trace:\n").first.trim(); | 35 innerString = innerString.split("Stack Trace:\n").first.trim(); |
| 36 } | 36 } |
| 37 | 37 |
| 38 buffer.write(innerString.contains("\n") ? "\n" : " "); | 38 buffer.write(innerString.contains("\n") ? "\n" : " "); |
| 39 buffer.write(innerString); | 39 buffer.write(innerString); |
| 40 return buffer.toString(); | 40 return buffer.toString(); |
| 41 } | 41 } |
| 42 } | 42 } |
| OLD | NEW |