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

Unified Diff: lib/coreimpl/regexp.dart

Issue 10911325: Normalization of patch signatures. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Long lines fixed. Created 8 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 side-by-side diff with in-line comments
Download patch
« lib/coreimpl/list.dart ('K') | « lib/coreimpl/list.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/coreimpl/regexp.dart
diff --git a/lib/coreimpl/regexp.dart b/lib/coreimpl/regexp.dart
index e1caf29beb89da9127143f73c33075fb1b88717a..86d5db106a549792317569600375b9afe56ae278 100644
--- a/lib/coreimpl/regexp.dart
+++ b/lib/coreimpl/regexp.dart
@@ -4,7 +4,8 @@
class JSSyntaxRegExp implements RegExp {
external const JSSyntaxRegExp(String pattern,
- [bool multiLine, bool ignoreCase]);
+ [bool multiLine = false,
+ bool ignoreCase = false]);
external Match firstMatch(String str);
external Iterable<Match> allMatches(String str);
external bool hasMatch(String str);
« lib/coreimpl/list.dart ('K') | « lib/coreimpl/list.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698