OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 library unittest.backend.platform_selector.visitor; |
| 6 |
| 7 import 'ast.dart'; |
| 8 |
| 9 /// The interface for visitors of the platform selector AST. |
| 10 abstract class Visitor<T> { |
| 11 T visitVariable(VariableNode node); |
| 12 T visitNot(NotNode node); |
| 13 T visitOr(OrNode node); |
| 14 T visitAnd(AndNode node); |
| 15 T visitConditional(ConditionalNode node); |
| 16 } |
| 17 |
| 18 /// An abstract superclass for side-effect-based visitors. |
| 19 /// |
| 20 /// The default implementations of this visitor's methods just traverse the AST |
| 21 /// and do nothing with it. |
| 22 abstract class RecursiveVisitor implements Visitor { |
| 23 const RecursiveVisitor(); |
| 24 |
| 25 void visitVariable(VariableNode node) {} |
| 26 |
| 27 void visitNot(NotNode node) { |
| 28 node.child.accept(this); |
| 29 } |
| 30 |
| 31 void visitOr(OrNode node) { |
| 32 node.left.accept(this); |
| 33 node.right.accept(this); |
| 34 } |
| 35 |
| 36 void visitAnd(AndNode node) { |
| 37 node.left.accept(this); |
| 38 node.right.accept(this); |
| 39 } |
| 40 |
| 41 void visitConditional(ConditionalNode node) { |
| 42 node.condition.accept(this); |
| 43 node.whenTrue.accept(this); |
| 44 node.whenFalse.accept(this); |
| 45 } |
| 46 } |
OLD | NEW |