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

Unified Diff: utils/markdown/ast.dart

Issue 8879004: Fix broken dartdoc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years 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/dartdoc/dartdoc.dart ('k') | utils/markdown/lib.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/markdown/ast.dart
diff --git a/utils/markdown/ast.dart b/utils/markdown/ast.dart
index 361c7541b4f0dcbad5844eaec5638ca7a344590a..70e7f27b194e834fbecf05fa3fad41d2599abcab 100644
--- a/utils/markdown/ast.dart
+++ b/utils/markdown/ast.dart
@@ -15,19 +15,19 @@ class Element implements Node {
final Map<String, String> attributes;
Element(this.tag, this.children)
- : attributes = <String, String>{};
+ : attributes = <String>{};
Element.empty(this.tag)
: children = null,
- attributes = <String, String>{};
+ attributes = <String>{};
Element.tag(this.tag)
: children = [],
- attributes = <String, String>{};
+ attributes = <String>{};
Element.text(this.tag, String text)
: children = [new Text(text)],
- attributes = <String, String>{};
+ attributes = <String>{};
bool get isEmpty() => children == null;
« no previous file with comments | « utils/dartdoc/dartdoc.dart ('k') | utils/markdown/lib.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698