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

Unified Diff: lib/html/src/SVGElementInstance.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/html/src/SVGElement.dart ('k') | lib/html/src/SVGElementInstanceWrappingImplementation.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/src/SVGElementInstance.dart
diff --git a/lib/html/src/SVGElementInstance.dart b/lib/html/src/SVGElementInstance.dart
index 7f2782c6f64e7fd0acd3bd02cddc8ddeea0ad9a3..60529f3d8b3e2d19b22510c86b2727c98df5100f 100644
--- a/lib/html/src/SVGElementInstance.dart
+++ b/lib/html/src/SVGElementInstance.dart
@@ -6,19 +6,19 @@
interface SVGElementInstance extends EventTarget {
- SVGElementInstanceList get childNodes();
+ SVGElementInstanceList get childNodes;
- SVGElement get correspondingElement();
+ SVGElement get correspondingElement;
- SVGUseElement get correspondingUseElement();
+ SVGUseElement get correspondingUseElement;
- SVGElementInstance get firstChild();
+ SVGElementInstance get firstChild;
- SVGElementInstance get lastChild();
+ SVGElementInstance get lastChild;
- SVGElementInstance get nextSibling();
+ SVGElementInstance get nextSibling;
- SVGElementInstance get parentNode();
+ SVGElementInstance get parentNode;
- SVGElementInstance get previousSibling();
+ SVGElementInstance get previousSibling;
}
« no previous file with comments | « lib/html/src/SVGElement.dart ('k') | lib/html/src/SVGElementInstanceWrappingImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698