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

Unified Diff: lib/coreimpl/regexp.dart

Issue 10919146: Get rid of a lot of () for getters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
« no previous file with comments | « lib/coreimpl/queue.dart ('k') | lib/coreimpl/splay_tree.dart » ('j') | 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 ec20e72c0f53245d2476df8af9bb12fad926f7c9..e1caf29beb89da9127143f73c33075fb1b88717a 100644
--- a/lib/coreimpl/regexp.dart
+++ b/lib/coreimpl/regexp.dart
@@ -9,7 +9,7 @@ class JSSyntaxRegExp implements RegExp {
external Iterable<Match> allMatches(String str);
external bool hasMatch(String str);
external String stringMatch(String str);
- external String get pattern();
- external bool get multiLine();
- external bool get ignoreCase();
+ external String get pattern;
+ external bool get multiLine;
+ external bool get ignoreCase;
}
« no previous file with comments | « lib/coreimpl/queue.dart ('k') | lib/coreimpl/splay_tree.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698