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

Unified Diff: lib/src/tree_printer.dart

Issue 13154004: import support (removed @include) (Closed) Base URL: https://github.com/dart-lang/csslib.git@master
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
« no previous file with comments | « lib/src/tree.dart ('k') | lib/visitor.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/tree_printer.dart
diff --git a/lib/src/tree_printer.dart b/lib/src/tree_printer.dart
index 5bcdee8f209d97ee143d8cf283b7ecd28705e31e..d79d5486be80be5a13c79f6837ee9aa5aae20495 100644
--- a/lib/src/tree_printer.dart
+++ b/lib/src/tree_printer.dart
@@ -117,18 +117,6 @@ class _TreePrinter extends Visitor {
// TODO(terry): To Be Implemented
}
- void visitIncludeDirective(IncludeDirective node) {
- heading('IncludeDirective', node);
- output.writeValue('include', node._include);
- output.depth++;
- if (node._stylesheet != null) {
- super.visitIncludeDirective(node);
- } else {
- output.writeValue('StyleSheet', '<EMPTY>');
- }
- output.depth--;
- }
-
void visitStyletDirective(StyletDirective node) {
heading('StyletDirective', node);
output.writeValue('dartClassName', node._dartClassName);
« no previous file with comments | « lib/src/tree.dart ('k') | lib/visitor.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698