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

Unified Diff: lib/html/src/SVGElement.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/ProgressEventWrappingImplementation.dart ('k') | lib/html/src/SVGElementInstance.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/src/SVGElement.dart
diff --git a/lib/html/src/SVGElement.dart b/lib/html/src/SVGElement.dart
index e2692a20572d050ec4f47ff30e24ad3dcde45b9e..f8233bef4534bd40e86f8f8757cea5b77acaf60f 100644
--- a/lib/html/src/SVGElement.dart
+++ b/lib/html/src/SVGElement.dart
@@ -7,15 +7,15 @@ interface SVGElement extends Element default SVGElementWrappingImplementation {
SVGElement.tag(String tag);
SVGElement.svg(String svg);
- String get id();
+ String get id;
void set id(String value);
- SVGSVGElement get ownerSVGElement();
+ SVGSVGElement get ownerSVGElement;
- SVGElement get viewportElement();
+ SVGElement get viewportElement;
- String get xmlbase();
+ String get xmlbase;
void set xmlbase(String value);
« no previous file with comments | « lib/html/src/ProgressEventWrappingImplementation.dart ('k') | lib/html/src/SVGElementInstance.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698