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

Unified Diff: lib/html/templates/html/impl/impl_Storage.darttemplate

Issue 11262012: Migrate to getter for isEmpty. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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/templates/html/impl/impl_NodeList.darttemplate ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/templates/html/impl/impl_Storage.darttemplate
diff --git a/lib/html/templates/html/impl/impl_Storage.darttemplate b/lib/html/templates/html/impl/impl_Storage.darttemplate
index b6027f5bef81e7a16becc12f84c71e0952792018..67f370bc7bd329349aee60b4a9a0698e4fa09282 100644
--- a/lib/html/templates/html/impl/impl_Storage.darttemplate
+++ b/lib/html/templates/html/impl/impl_Storage.darttemplate
@@ -49,6 +49,6 @@ class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
int get length => $dom_length;
- bool isEmpty() => $dom_key(0) == null;
+ bool get isEmpty => $dom_key(0) == null;
$!MEMBERS
}
« no previous file with comments | « lib/html/templates/html/impl/impl_NodeList.darttemplate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698