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

Unified Diff: utils/tests/template/sample.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 | « utils/tests/template/complex_datamodel.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/template/sample.dart
diff --git a/utils/tests/template/sample.dart b/utils/tests/template/sample.dart
index 82f436088ee1f81e9c0fddf01a17731bccf8eb95..93efb9646b3c4aec58da103ae86e10f181cc34db 100755
--- a/utils/tests/template/sample.dart
+++ b/utils/tests/template/sample.dart
@@ -60,7 +60,7 @@ class FriendList /*extends Template*/ {
each_0(friends, e0_0);
}
- Element get root() => _fragment.nodes.first;
+ Element get root => _fragment.nodes.first;
String toString(){
return _fragment.innerHTML;
@@ -131,7 +131,7 @@ class FriendEntry /*extends Template*/ {
with_0(friend, e0);
}
- Element get root() => _fragment.nodes.first;
+ Element get root => _fragment.nodes.first;
String toString(){
return _fragment.innerHTML;
@@ -160,7 +160,7 @@ class FriendEntryEvents /*extends Template*/ {
Element _fragment;
var _friendElem;
- get friendElem() => _friendElem;
+ get friendElem => _friendElem;
// ${#with friend}
with_0(Friend item, Element parent) {
@@ -205,7 +205,7 @@ class FriendEntryEvents /*extends Template*/ {
with_0(friend, e0);
}
- Element get root() => _fragment.nodes.first;
+ Element get root => _fragment.nodes.first;
String toString(){
return _fragment.innerHTML;
« no previous file with comments | « utils/tests/template/complex_datamodel.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698