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

Side by Side Diff: lib/visitor.dart

Issue 873313003: Cleanup some ambiguous and incorrect types and disable a case that in analyzer.dart that seems like… (Closed) Base URL: git@github.com:dart-lang/csslib.git@master
Patch Set: ptal Created 5 years, 10 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 unified diff | Download patch
« no previous file with comments | « lib/src/tree.dart ('k') | pubspec.yaml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « lib/src/tree.dart ('k') | pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698