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

Unified Diff: runtime/lib/regexp_patch.dart

Issue 10928051: Remove more () from 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 | « runtime/lib/growable_array.dart ('k') | runtime/lib/string_base.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/regexp_patch.dart
diff --git a/runtime/lib/regexp_patch.dart b/runtime/lib/regexp_patch.dart
index c705b4489b10c2183e02f170db24864561e2e5a6..f6167d992cb75149fe518accaf4de242b5e5a2c9 100644
--- a/runtime/lib/regexp_patch.dart
+++ b/runtime/lib/regexp_patch.dart
@@ -108,13 +108,13 @@ patch class JSSyntaxRegExp {
return str._substringUnchecked(match[0], match[1]);
}
- /* patch */ String get pattern() native "JSSyntaxRegExp_getPattern";
+ /* patch */ String get pattern native "JSSyntaxRegExp_getPattern";
- /* patch */ bool get multiLine() native "JSSyntaxRegExp_multiLine";
+ /* patch */ bool get multiLine native "JSSyntaxRegExp_multiLine";
- /* patch */ bool get ignoreCase() native "JSSyntaxRegExp_ignoreCase";
+ /* patch */ bool get ignoreCase native "JSSyntaxRegExp_ignoreCase";
- int get _groupCount() native "JSSyntaxRegExp_getGroupCount";
+ int get _groupCount native "JSSyntaxRegExp_getGroupCount";
List _ExecuteMatch(String str, int start_index)
native "JSSyntaxRegExp_ExecuteMatch";
« no previous file with comments | « runtime/lib/growable_array.dart ('k') | runtime/lib/string_base.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698