| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library csslib.visitor; | 5 library csslib.visitor; |
| 6 | 6 |
| 7 import 'package:source_span/source_span.dart'; | 7 import 'package:source_span/source_span.dart'; |
| 8 import 'parser.dart'; | 8 import 'parser.dart'; |
| 9 | 9 |
| 10 part 'src/css_printer.dart'; | 10 part 'src/css_printer.dart'; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 void visitNamespaceDirective(NamespaceDirective node); | 33 void visitNamespaceDirective(NamespaceDirective node); |
| 34 void visitVarDefinitionDirective(VarDefinitionDirective node); | 34 void visitVarDefinitionDirective(VarDefinitionDirective node); |
| 35 void visitMixinDefinition(MixinDefinition node); | 35 void visitMixinDefinition(MixinDefinition node); |
| 36 void visitMixinRulesetDirective(MixinRulesetDirective node); | 36 void visitMixinRulesetDirective(MixinRulesetDirective node); |
| 37 void visitMixinDeclarationDirective(MixinDeclarationDirective node); | 37 void visitMixinDeclarationDirective(MixinDeclarationDirective node); |
| 38 void visitIncludeDirective(IncludeDirective node); | 38 void visitIncludeDirective(IncludeDirective node); |
| 39 void visitContentDirective(ContentDirective node); | 39 void visitContentDirective(ContentDirective node); |
| 40 | 40 |
| 41 void visitRuleSet(RuleSet node); | 41 void visitRuleSet(RuleSet node); |
| 42 void visitDeclarationGroup(DeclarationGroup node); | 42 void visitDeclarationGroup(DeclarationGroup node); |
| 43 void visitMarginGroup(DeclarationGroup node); | 43 void visitMarginGroup(MarginGroup node); |
| 44 void visitDeclaration(Declaration node); | 44 void visitDeclaration(Declaration node); |
| 45 void visitVarDefinition(VarDefinition node); | 45 void visitVarDefinition(VarDefinition node); |
| 46 void visitIncludeMixinAtDeclaration(IncludeMixinAtDeclaration node); | 46 void visitIncludeMixinAtDeclaration(IncludeMixinAtDeclaration node); |
| 47 void visitExtendDeclaration(ExtendDeclaration node); | 47 void visitExtendDeclaration(ExtendDeclaration node); |
| 48 void visitSelectorGroup(SelectorGroup node); | 48 void visitSelectorGroup(SelectorGroup node); |
| 49 void visitSelector(Selector node); | 49 void visitSelector(Selector node); |
| 50 void visitSimpleSelectorSequence(SimpleSelectorSequence node); | 50 void visitSimpleSelectorSequence(SimpleSelectorSequence node); |
| 51 void visitSimpleSelector(SimpleSelector node); | 51 void visitSimpleSelector(SimpleSelector node); |
| 52 void visitElementSelector(ElementSelector node); | 52 void visitElementSelector(ElementSelector node); |
| 53 void visitNamespaceSelector(NamespaceSelector node); | 53 void visitNamespaceSelector(NamespaceSelector node); |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 void visitPaddingExpression(PaddingExpression node) { | 446 void visitPaddingExpression(PaddingExpression node) { |
| 447 // TODO(terry): TBD | 447 // TODO(terry): TBD |
| 448 throw UnimplementedError; | 448 throw UnimplementedError; |
| 449 } | 449 } |
| 450 | 450 |
| 451 void visitWidthExpression(WidthExpression node) { | 451 void visitWidthExpression(WidthExpression node) { |
| 452 // TODO(terry): TBD | 452 // TODO(terry): TBD |
| 453 throw UnimplementedError; | 453 throw UnimplementedError; |
| 454 } | 454 } |
| 455 } | 455 } |
| OLD | NEW |