| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 descriptor.pattern; | 5 library descriptor.pattern; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:io'; | 8 import 'dart:io'; |
| 9 | 9 |
| 10 import 'package:path/path.dart' as path; | 10 import 'package:path/path.dart' as path; |
| 11 import 'package:stack_trace/stack_trace.dart'; |
| 11 | 12 |
| 12 import '../../descriptor.dart'; | 13 import '../../descriptor.dart'; |
| 13 import '../../scheduled_test.dart'; | 14 import '../../scheduled_test.dart'; |
| 14 import '../utils.dart'; | 15 import '../utils.dart'; |
| 15 | 16 |
| 16 /// A function that takes a name for a [Descriptor] and returns a [Descriptor]. | 17 /// A function that takes a name for a [Descriptor] and returns a [Descriptor]. |
| 17 /// This is used for [PatternDescriptor]s, where the name isn't known | 18 /// This is used for [PatternDescriptor]s, where the name isn't known |
| 18 /// ahead-of-time. | 19 /// ahead-of-time. |
| 19 typedef Descriptor EntryCreator(String name); | 20 typedef Descriptor EntryCreator(String name); |
| 20 | 21 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 if (pattern is! RegExp) return '$pattern'; | 106 if (pattern is! RegExp) return '$pattern'; |
| 106 | 107 |
| 107 var regExp = pattern as RegExp; | 108 var regExp = pattern as RegExp; |
| 108 var flags = new StringBuffer(); | 109 var flags = new StringBuffer(); |
| 109 if (!regExp.isCaseSensitive) flags.write('i'); | 110 if (!regExp.isCaseSensitive) flags.write('i'); |
| 110 if (regExp.isMultiLine) flags.write('m'); | 111 if (regExp.isMultiLine) flags.write('m'); |
| 111 return '/${regExp.pattern}/$flags'; | 112 return '/${regExp.pattern}/$flags'; |
| 112 } | 113 } |
| 113 | 114 |
| 114 Future create([String parent]) => new Future.error( | 115 Future create([String parent]) => new Future.error( |
| 115 new UnsupportedError("Pattern descriptors don't support create().")); | 116 new UnsupportedError("Pattern descriptors don't support create()."), |
| 117 new Chain.current()); |
| 116 } | 118 } |
| OLD | NEW |