| 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 test.util.dart; | 5 library test.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:analyzer/analyzer.dart'; |
| 12 import 'package:path/path.dart' as p; | 12 import 'package:path/path.dart' as p; |
| 13 import 'package:source_span/source_span.dart'; | 13 import 'package:source_span/source_span.dart'; |
| 14 | 14 |
| 15 import 'string_literal_iterator.dart'; | 15 import 'string_literal_iterator.dart'; |
| 16 import 'io.dart'; | 16 import 'io.dart'; |
| 17 import 'isolate_wrapper.dart'; | 17 import 'isolate_wrapper.dart'; |
| 18 import 'remote_exception.dart'; | |
| 19 | 18 |
| 20 /// Runs [code] in an isolate. | 19 /// Runs [code] in an isolate. |
| 21 /// | 20 /// |
| 22 /// [code] should be the contents of a Dart entrypoint. It may contain imports; | 21 /// [code] should be the contents of a Dart entrypoint. It may contain imports; |
| 23 /// they will be resolved in the same context as the host isolate. [message] is | 22 /// they will be resolved in the same context as the host isolate. [message] is |
| 24 /// passed to the [main] method of the code being run; the caller is responsible | 23 /// passed to the [main] method of the code being run; the caller is responsible |
| 25 /// for using this to establish communication with the isolate. | 24 /// for using this to establish communication with the isolate. |
| 26 /// | 25 /// |
| 27 /// [packageRoot] controls the package root of the isolate. It may be either a | 26 /// [packageRoot] controls the package root of the isolate. It may be either a |
| 28 /// [String] or a [Uri]. | 27 /// [String] or a [Uri]. |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 } | 99 } |
| 101 | 100 |
| 102 var start = contextRunes.offset; | 101 var start = contextRunes.offset; |
| 103 for (var spanRune in span.text.runes) { | 102 for (var spanRune in span.text.runes) { |
| 104 if (spanRune != contextRunes.current) return null; | 103 if (spanRune != contextRunes.current) return null; |
| 105 contextRunes.moveNext(); | 104 contextRunes.moveNext(); |
| 106 } | 105 } |
| 107 | 106 |
| 108 return file.span(start, contextRunes.offset); | 107 return file.span(start, contextRunes.offset); |
| 109 } | 108 } |
| OLD | NEW |