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

Unified Diff: lib/html/src/TransitionEventWrappingImplementation.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/TransitionEvent.dart ('k') | lib/html/src/UIEvent.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/src/TransitionEventWrappingImplementation.dart
diff --git a/lib/html/src/TransitionEventWrappingImplementation.dart b/lib/html/src/TransitionEventWrappingImplementation.dart
index 396efb501639dcddf5e452e3ef562c8a23c5fb90..24386ff1e4a9f090294a1c5809662c3f4a594227 100644
--- a/lib/html/src/TransitionEventWrappingImplementation.dart
+++ b/lib/html/src/TransitionEventWrappingImplementation.dart
@@ -7,7 +7,7 @@ class TransitionEventWrappingImplementation extends EventWrappingImplementation
TransitionEventWrappingImplementation._wrap(ptr) : super._wrap(ptr);
- static String get _eventName() {
+ static String get _eventName {
if (_name != null) return _name;
try {
@@ -28,7 +28,7 @@ class TransitionEventWrappingImplementation extends EventWrappingImplementation
return LevelDom.wrapTransitionEvent(e);
}
- num get elapsedTime() => _ptr.elapsedTime;
+ num get elapsedTime => _ptr.elapsedTime;
- String get propertyName() => _ptr.propertyName;
+ String get propertyName => _ptr.propertyName;
}
« no previous file with comments | « lib/html/src/TransitionEvent.dart ('k') | lib/html/src/UIEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698