| 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 part of dart.core; | 5 part of dart.core; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * [Match] contains methods to manipulate a pattern match. | 8 * [Match] contains methods to manipulate a pattern match. |
| 9 * | 9 * |
| 10 * A [Match] or and iterable of [Match] objects are returned from [Pattern] | 10 * A [Match] or and iterable of [Match] objects are returned from [Pattern] |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 * The string on which this match was computed. | 84 * The string on which this match was computed. |
| 85 */ | 85 */ |
| 86 String get input; | 86 String get input; |
| 87 | 87 |
| 88 /** | 88 /** |
| 89 * Deprecated alias for [input]. | 89 * Deprecated alias for [input]. |
| 90 * | 90 * |
| 91 * Will be removed soon. | 91 * Will be removed soon. |
| 92 */ | 92 */ |
| 93 @deprecated | 93 @deprecated |
| 94 String get src; | 94 String get str; |
| 95 | 95 |
| 96 /** | 96 /** |
| 97 * The pattern used to search in [input]. | 97 * The pattern used to search in [input]. |
| 98 */ | 98 */ |
| 99 Pattern get pattern; | 99 Pattern get pattern; |
| 100 } | 100 } |
| 101 | 101 |
| 102 | 102 |
| 103 /** | 103 /** |
| 104 * A regular expression pattern. | 104 * A regular expression pattern. |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 | 172 |
| 173 /** | 173 /** |
| 174 * Whether this regular expression is case sensitive. | 174 * Whether this regular expression is case sensitive. |
| 175 * | 175 * |
| 176 * If the regular expression is not case sensitive, it will match an input | 176 * If the regular expression is not case sensitive, it will match an input |
| 177 * letter with a pattern letter even if the two letters are different case | 177 * letter with a pattern letter even if the two letters are different case |
| 178 * versions of the same letter. | 178 * versions of the same letter. |
| 179 */ | 179 */ |
| 180 bool get isCaseSensitive; | 180 bool get isCaseSensitive; |
| 181 } | 181 } |
| OLD | NEW |