| 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.util.dart; | 5 library unittest.util.dart; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:io'; | 8 import 'dart:io'; |
| 9 import 'dart:isolate'; | 9 import 'dart:isolate'; |
| 10 | 10 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 Isolate.spawnUri(Uri.parse(message['uri']), [], message['message'], | 64 Isolate.spawnUri(Uri.parse(message['uri']), [], message['message'], |
| 65 packageRoot: packageRoot) | 65 packageRoot: packageRoot) |
| 66 .then((_) => replyTo.send({'type': 'success'})) | 66 .then((_) => replyTo.send({'type': 'success'})) |
| 67 .catchError((error, stackTrace) { | 67 .catchError((error, stackTrace) { |
| 68 replyTo.send({ | 68 replyTo.send({ |
| 69 'type': 'error', | 69 'type': 'error', |
| 70 'error': RemoteException.serialize(error, stackTrace) | 70 'error': RemoteException.serialize(error, stackTrace) |
| 71 }); | 71 }); |
| 72 }); | 72 }); |
| 73 } | 73 } |
| 74 | |
| 75 /// Parse all the annotations at the beginning of a Dart file. | |
| 76 /// | |
| 77 /// This will parse annotations until the first non-annotation production is | |
| 78 /// reached. | |
| 79 List<Annotation> parseAnnotations(String path) { | |
| 80 var contents = new File(path).readAsStringSync(); | |
| 81 var directives = parseDirectives(contents, name: path).directives; | |
| 82 return directives.isEmpty ? [] : directives.first.metadata; | |
| 83 } | |
| OLD | NEW |