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

Unified Diff: pkg/csslib/lib/src/tree_printer.dart

Issue 60983003: pkg/csslib: fixed analysis error, more cleanup (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: removed extra print Created 7 years, 1 month 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: pkg/csslib/lib/src/tree_printer.dart
diff --git a/pkg/csslib/lib/src/tree_printer.dart b/pkg/csslib/lib/src/tree_printer.dart
index 8c394766f008acb4c42c3569268acd4d5f339bd9..0604b478d3e9ccaf71511944d23c72f08d26898e 100644
--- a/pkg/csslib/lib/src/tree_printer.dart
+++ b/pkg/csslib/lib/src/tree_printer.dart
@@ -129,9 +129,9 @@ class _TreePrinter extends Visitor {
void visitStyletDirective(StyletDirective node) {
heading('StyletDirective', node);
- output.writeValue('dartClassName', node._dartClassName);
+ output.writeValue('dartClassName', node.dartClassName);
output.depth++;
- output.writeNodeList('rulesets', node._rulesets);
+ output.writeNodeList('rulesets', node.rulesets);
output.depth--;
}
@@ -199,7 +199,7 @@ class _TreePrinter extends Visitor {
void visitDeclarationGroup(DeclarationGroup node) {
heading('DeclarationGroup', node);
output.depth++;
- output.writeNodeList('declarations', node._declarations);
+ output.writeNodeList('declarations', node.declarations);
output.depth--;
}
@@ -207,7 +207,7 @@ class _TreePrinter extends Visitor {
heading('MarginGroup', node);
output.depth++;
output.writeValue('@directive', node.margin_sym);
- output.writeNodeList('declarations', node._declarations);
+ output.writeNodeList('declarations', node.declarations);
output.depth--;
}

Powered by Google App Engine
This is Rietveld 408576698