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

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: nits 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
« no previous file with comments | « pkg/csslib/lib/src/tree_base.dart ('k') | pkg/csslib/lib/visitor.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 3d381bde4848385d22e3cb79f90bd5db722c27a5..3a8b74821a1660a24c94932868f315566a75871e 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--;
}
@@ -200,7 +200,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--;
}
@@ -208,7 +208,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--;
}
« no previous file with comments | « pkg/csslib/lib/src/tree_base.dart ('k') | pkg/csslib/lib/visitor.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698