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 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'; |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 } | 110 } |
111 | 111 |
112 var start = contextRunes.offset; | 112 var start = contextRunes.offset; |
113 for (var spanRune in span.text.runes) { | 113 for (var spanRune in span.text.runes) { |
114 if (spanRune != contextRunes.current) return null; | 114 if (spanRune != contextRunes.current) return null; |
115 contextRunes.moveNext(); | 115 contextRunes.moveNext(); |
116 } | 116 } |
117 | 117 |
118 return file.span(start, contextRunes.offset); | 118 return file.span(start, contextRunes.offset); |
119 } | 119 } |
OLD | NEW |