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

Unified Diff: utils/template/htmltree.dart

Issue 12615002: Remove references to capital-D-Dynamic. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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
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--;
}

Powered by Google App Engine
This is Rietveld 408576698