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

Unified Diff: pkg/unittest/html_enhanced_config.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 | « pkg/logging/logging.dart ('k') | runtime/lib/byte_array.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/html_enhanced_config.dart
diff --git a/pkg/unittest/html_enhanced_config.dart b/pkg/unittest/html_enhanced_config.dart
index f3affda4314d635de48046fd8c2c772ed5c1c277..4f7e234b551e6111ce82d1a5c265e367a9517ec9 100644
--- a/pkg/unittest/html_enhanced_config.dart
+++ b/pkg/unittest/html_enhanced_config.dart
@@ -235,9 +235,9 @@ class HtmlEnhancedConfiguration extends Configuration {
}
- static bool get _isIE() => document.window.navigator.userAgent.contains('MSIE');
+ static bool get _isIE => document.window.navigator.userAgent.contains('MSIE');
- String get _htmlTestCSS() =>
+ String get _htmlTestCSS =>
'''
body{
font-size: 14px;
« no previous file with comments | « pkg/logging/logging.dart ('k') | runtime/lib/byte_array.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698