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

Unified Diff: pkg/csslib/lib/visitor.dart

Issue 64373003: pkg/csslib: types, fixes, cleanup (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: more 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/validate.dart ('k') | pkg/csslib/test/debug_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/csslib/lib/visitor.dart
diff --git a/pkg/csslib/lib/visitor.dart b/pkg/csslib/lib/visitor.dart
index 91fa7140293b7650b3e88a82cb121667d0341996..3b20a4ec18ef2770d2b9d3aec6aa739b12c93702 100644
--- a/pkg/csslib/lib/visitor.dart
+++ b/pkg/csslib/lib/visitor.dart
@@ -180,7 +180,7 @@ class Visitor implements VisitorBase {
}
void visitKeyFrameDirective(KeyFrameDirective node) {
- visitIdentifier(node._name);
+ visitIdentifier(node.name);
_visitNodeList(node._blocks);
}
@@ -258,11 +258,11 @@ class Visitor implements VisitorBase {
}
void visitSelector(Selector node) {
- _visitNodeList(node._simpleSelectorSequences);
+ _visitNodeList(node.simpleSelectorSequences);
}
void visitSimpleSelectorSequence(SimpleSelectorSequence node) {
- var selector = node._selector;
+ var selector = node.simpleSelector;
if (selector is NamespaceSelector) {
visitNamespaceSelector(selector);
} else if (selector is ElementSelector) {
« no previous file with comments | « pkg/csslib/lib/src/validate.dart ('k') | pkg/csslib/test/debug_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698