Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Side by Side Diff: sdk/lib/core/regexp.dart

Issue 23490008: Fix implementations of Match too, to use "input", not "str". (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/lib/_internal/lib/string_helper.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « sdk/lib/_internal/lib/string_helper.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698