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

Unified Diff: lib/src/css_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/parser.dart ('k') | lib/src/tokenkind.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/css_printer.dart
diff --git a/lib/src/css_printer.dart b/lib/src/css_printer.dart
index 10650c7910e38ad1b4901e36604ed9b60aae2980..a4694b32d9f0fd5e0191ad8a2cf741cd973ea408 100644
--- a/lib/src/css_printer.dart
+++ b/lib/src/css_printer.dart
@@ -145,16 +145,6 @@ class CssPrinter extends Visitor {
emit('$_sp$_sp}$_newLine');
}
- void visitIncludeDirective(IncludeDirective node) {
- emit('/****** @include ${node._include} ******/\n');
- if (node._stylesheet != null) {
- node._stylesheet.visit(this);
- } else {
- emit('// <EMPTY>');
- }
- emit('/****** End of ${node._include} ******/\n\n');
- }
-
void visitStyletDirective(StyletDirective node) {
emit('/* @stylet export as ${node._dartClassName} */\n');
}
« no previous file with comments | « lib/parser.dart ('k') | lib/src/tokenkind.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698