| 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 status_file_parser; |
| 6 | 6 |
| 7 #import("dart:io"); | 7 import "dart:io"; |
| 8 #import("status_expression.dart"); | 8 import "status_expression.dart"; |
| 9 | 9 |
| 10 /** Possible outcomes of running a test. */ | 10 /** Possible outcomes of running a test. */ |
| 11 const CRASH = "crash"; | 11 const CRASH = "crash"; |
| 12 const TIMEOUT = "timeout"; | 12 const TIMEOUT = "timeout"; |
| 13 const FAIL = "fail"; | 13 const FAIL = "fail"; |
| 14 const PASS = "pass"; | 14 const PASS = "pass"; |
| 15 /** | 15 /** |
| 16 * An indication to skip the test. The caller is responsible for skipping it. | 16 * An indication to skip the test. The caller is responsible for skipping it. |
| 17 */ | 17 */ |
| 18 const SKIP = "skip"; | 18 const SKIP = "skip"; |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 } | 206 } |
| 207 regExps[i] = regExp; | 207 regExps[i] = regExp; |
| 208 } | 208 } |
| 209 _keyToRegExps[key] = regExps; | 209 _keyToRegExps[key] = regExps; |
| 210 }); | 210 }); |
| 211 | 211 |
| 212 _regExpCache = null; | 212 _regExpCache = null; |
| 213 _preprocessed = true; | 213 _preprocessed = true; |
| 214 } | 214 } |
| 215 } | 215 } |
| OLD | NEW |