Index: utils/template/htmltree.dart |
diff --git a/utils/template/htmltree.dart b/utils/template/htmltree.dart |
index 16db0a9f22ebcff6b9b29851ebd014a569dead0d..2d08b02bc65e3e9d38a4efbf4b7867c1de99ed08 100644 |
--- a/utils/template/htmltree.dart |
+++ b/utils/template/htmltree.dart |
@@ -361,10 +361,10 @@ class TreePrinter implements TreeVisitor { |
void visitTemplateDocument(TemplateDocument node) { |
output.heading('Content', node.span); |
output.depth++; |
- // TODO(terry): Ugly use of 'as Dynamic' instead of children[0] to |
+ // TODO(terry): Ugly use of 'as dynamic' instead of children[0] to |
// surpress warning. |
assert(node.children.length == 1 && |
- (node.children as Dynamic)[0].tagTokenId == -1); |
+ (node.children as dynamic)[0].tagTokenId == -1); |
output.writeNodeList("document", node.children); |
output.depth--; |
} |