| 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 |
| 11 import 'package:analyzer/analyzer.dart'; |
| 11 import 'package:path/path.dart' as p; | 12 import 'package:path/path.dart' as p; |
| 12 | 13 |
| 13 import 'io.dart'; | 14 import 'io.dart'; |
| 14 import 'isolate_wrapper.dart'; | 15 import 'isolate_wrapper.dart'; |
| 15 import 'remote_exception.dart'; | 16 import 'remote_exception.dart'; |
| 16 | 17 |
| 17 /// Runs [code] in an isolate. | 18 /// Runs [code] in an isolate. |
| 18 /// | 19 /// |
| 19 /// [code] should be the contents of a Dart entrypoint. It may contain imports; | 20 /// [code] should be the contents of a Dart entrypoint. It may contain imports; |
| 20 /// they will be resolved in the same context as the host isolate. [message] is | 21 /// they will be resolved in the same context as the host isolate. [message] is |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 Isolate.spawnUri(Uri.parse(message['uri']), [], message['message'], | 64 Isolate.spawnUri(Uri.parse(message['uri']), [], message['message'], |
| 64 packageRoot: packageRoot) | 65 packageRoot: packageRoot) |
| 65 .then((_) => replyTo.send({'type': 'success'})) | 66 .then((_) => replyTo.send({'type': 'success'})) |
| 66 .catchError((error, stackTrace) { | 67 .catchError((error, stackTrace) { |
| 67 replyTo.send({ | 68 replyTo.send({ |
| 68 'type': 'error', | 69 'type': 'error', |
| 69 'error': RemoteException.serialize(error, stackTrace) | 70 'error': RemoteException.serialize(error, stackTrace) |
| 70 }); | 71 }); |
| 71 }); | 72 }); |
| 72 } | 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 |