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

Unified Diff: lib/compiler/implementation/lib/coreimpl_patch.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
Index: lib/compiler/implementation/lib/coreimpl_patch.dart
diff --git a/lib/compiler/implementation/lib/coreimpl_patch.dart b/lib/compiler/implementation/lib/coreimpl_patch.dart
index 8bdedd88666ea677540e4e2c2e9e412decfd47be..8953c709874b6537e9590ebf314a7792328226c1 100644
--- a/lib/compiler/implementation/lib/coreimpl_patch.dart
+++ b/lib/compiler/implementation/lib/coreimpl_patch.dart
@@ -185,9 +185,9 @@ patch class JSSyntaxRegExp {
return new _AllMatchesIterable(this, str);
}
- patch String get pattern() => _pattern;
- patch bool get multiLine() => _multiLine;
- patch bool get ignoreCase() => _ignoreCase;
+ patch String get pattern => _pattern;
+ patch bool get multiLine => _multiLine;
+ patch bool get ignoreCase => _ignoreCase;
static JSSyntaxRegExp _globalVersionOf(JSSyntaxRegExp other) {
JSSyntaxRegExp re = new JSSyntaxRegExp(other.pattern,
« no previous file with comments | « lib/compiler/implementation/js_backend/emitter.dart ('k') | lib/compiler/implementation/lib/isolate_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698