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

Unified Diff: tests/benchmark_smoke/benchmark_base.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 | « samples/webcomponents/shadow_polyfill.dart ('k') | tests/compiler/dart2js/mirrors_helper.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/benchmark_smoke/benchmark_base.dart
diff --git a/tests/benchmark_smoke/benchmark_base.dart b/tests/benchmark_smoke/benchmark_base.dart
index 41a6a121df77df29006495a0b19c7d7a2286e9ce..5aac45011f7dfa9a1f21756f3e06c8c296218d25 100644
--- a/tests/benchmark_smoke/benchmark_base.dart
+++ b/tests/benchmark_smoke/benchmark_base.dart
@@ -3,14 +3,14 @@
// BSD-style license that can be found in the LICENSE file.
/** Accessors for our Singleton variables. */
-BenchmarkSuite get BENCHMARK_SUITE() {
+BenchmarkSuite get BENCHMARK_SUITE {
if (BenchmarkSuite._ONLY == null) {
BenchmarkSuite._ONLY = new BenchmarkSuite._internal();
}
return BenchmarkSuite._ONLY;
}
-BenchmarkView get BENCHMARK_VIEW() {
+BenchmarkView get BENCHMARK_VIEW {
if (BenchmarkView._ONLY == null) {
BenchmarkView._ONLY = new BenchmarkView._internal();
}
« no previous file with comments | « samples/webcomponents/shadow_polyfill.dart ('k') | tests/compiler/dart2js/mirrors_helper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698