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

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

Issue 2880543002: Revert "Change some platform libraries to use `part of URI`." (Closed)
Patch Set: Created 3 years, 7 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
« no previous file with comments | « sdk/lib/core/print.dart ('k') | sdk/lib/core/set.dart » ('j') | 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 * A regular expression pattern. 8 * A regular expression pattern.
9 * 9 *
10 * Regular expressions are [Pattern]s, and can as such be used to match strings 10 * Regular expressions are [Pattern]s, and can as such be used to match strings
11 * or parts of strings. 11 * or parts of strings.
12 * 12 *
13 * Dart regular expressions have the same syntax and semantics as 13 * Dart regular expressions have the same syntax and semantics as
14 * JavaScript regular expressions. See 14 * JavaScript regular expressions. See
15 * <http://ecma-international.org/ecma-262/5.1/#sec-15.10> 15 * <http://ecma-international.org/ecma-262/5.1/#sec-15.10>
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 82
83 /** 83 /**
84 * Whether this regular expression is case sensitive. 84 * Whether this regular expression is case sensitive.
85 * 85 *
86 * If the regular expression is not case sensitive, it will match an input 86 * If the regular expression is not case sensitive, it will match an input
87 * letter with a pattern letter even if the two letters are different case 87 * letter with a pattern letter even if the two letters are different case
88 * versions of the same letter. 88 * versions of the same letter.
89 */ 89 */
90 bool get isCaseSensitive; 90 bool get isCaseSensitive;
91 } 91 }
OLDNEW
« no previous file with comments | « sdk/lib/core/print.dart ('k') | sdk/lib/core/set.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698