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

Unified Diff: lib/dom/src/dummy_GlobalProperties.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/dom/src/dart2js_DOMType.dart ('k') | lib/dom/src/native_DOMImplementation.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/src/dummy_GlobalProperties.dart
diff --git a/lib/dom/src/dummy_GlobalProperties.dart b/lib/dom/src/dummy_GlobalProperties.dart
index a8ce2ad639f46a77df3122914d3f253ad5470179..1ad62801e0c8ed826ca9c31bcb3fdef1bcd3291e 100644
--- a/lib/dom/src/dummy_GlobalProperties.dart
+++ b/lib/dom/src/dummy_GlobalProperties.dart
@@ -2,9 +2,9 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-Window get window() => _dummy();
+Window get window => _dummy();
// TODO(vsm): Remove when prefixes are supported.
-Window get dom_window() => _dummy();
+Window get dom_window => _dummy();
-Document get document() => _dummy();
+Document get document => _dummy();
« no previous file with comments | « lib/dom/src/dart2js_DOMType.dart ('k') | lib/dom/src/native_DOMImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698