OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 status_file_parser; | 5 library test_dart_copy.status_file_parser; |
6 | 6 |
7 import "dart:async"; | 7 import "dart:async"; |
8 import "dart:convert" show LineSplitter, UTF8; | 8 import "dart:convert" show LineSplitter, UTF8; |
9 import "dart:io"; | 9 import "dart:io"; |
10 | 10 |
11 import "path.dart"; | 11 import "path.dart"; |
12 import "status_expression.dart"; | 12 import "status_expression.dart"; |
13 | 13 |
14 import '../expectation.dart' show Expectation, ExpectationSet; | 14 import '../expectation.dart' show Expectation, ExpectationSet; |
15 | 15 |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 } | 241 } |
242 regExps[i] = regExp; | 242 regExps[i] = regExp; |
243 } | 243 } |
244 _keyToRegExps[key] = regExps; | 244 _keyToRegExps[key] = regExps; |
245 }); | 245 }); |
246 | 246 |
247 _regExpCache = null; | 247 _regExpCache = null; |
248 _preprocessed = true; | 248 _preprocessed = true; |
249 } | 249 } |
250 } | 250 } |
OLD | NEW |