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

Unified Diff: pkg/dartdoc/ast.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 | « pkg/args/args.dart ('k') | pkg/dartdoc/block_parser.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dartdoc/ast.dart
diff --git a/pkg/dartdoc/ast.dart b/pkg/dartdoc/ast.dart
index e158ff983759de6c3945b57a93ab5676d1bf841d..b3d163938405585d8e9171cbeef411626eb877f3 100644
--- a/pkg/dartdoc/ast.dart
+++ b/pkg/dartdoc/ast.dart
@@ -29,7 +29,7 @@ class Element implements Node {
: children = [new Text(text)],
attributes = <String, String>{};
- bool get isEmpty() => children == null;
+ bool get isEmpty => children == null;
void accept(NodeVisitor visitor) {
if (visitor.visitElementBefore(this)) {
« no previous file with comments | « pkg/args/args.dart ('k') | pkg/dartdoc/block_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698