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

Unified Diff: lib/html/src/AnimationEventWrappingImplementation.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/AnimationEvent.dart ('k') | lib/html/src/BeforeLoadEvent.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/src/AnimationEventWrappingImplementation.dart
diff --git a/lib/html/src/AnimationEventWrappingImplementation.dart b/lib/html/src/AnimationEventWrappingImplementation.dart
index 711265bfc0fc0a2a8eb1a2c41a684b1814888bd7..e61acbdea979d552778ec416edf55685408aa4cf 100644
--- a/lib/html/src/AnimationEventWrappingImplementation.dart
+++ b/lib/html/src/AnimationEventWrappingImplementation.dart
@@ -7,7 +7,7 @@ class AnimationEventWrappingImplementation extends EventWrappingImplementation i
AnimationEventWrappingImplementation._wrap(ptr) : super._wrap(ptr);
- static String get _eventName() {
+ static String get _eventName {
if (_name != null) return _name;
try {
@@ -27,7 +27,7 @@ class AnimationEventWrappingImplementation extends EventWrappingImplementation i
return LevelDom.wrapAnimationEvent(e);
}
- String get animationName() => _ptr.animationName;
+ String get animationName => _ptr.animationName;
- num get elapsedTime() => _ptr.elapsedTime;
+ num get elapsedTime => _ptr.elapsedTime;
}
« no previous file with comments | « lib/html/src/AnimationEvent.dart ('k') | lib/html/src/BeforeLoadEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698