| 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 interface NodeVisitor<T> { | 5 abstract class NodeVisitor<T> { |
| 6 T visitProgram(Program node); | 6 T visitProgram(Program node); |
| 7 | 7 |
| 8 T visitBlock(Block node); | 8 T visitBlock(Block node); |
| 9 T visitExpressionStatement(ExpressionStatement node); | 9 T visitExpressionStatement(ExpressionStatement node); |
| 10 T visitEmptyStatement(EmptyStatement node); | 10 T visitEmptyStatement(EmptyStatement node); |
| 11 T visitIf(If node); | 11 T visitIf(If node); |
| 12 T visitFor(For node); | 12 T visitFor(For node); |
| 13 T visitForIn(ForIn node); | 13 T visitForIn(ForIn node); |
| 14 T visitWhile(While node); | 14 T visitWhile(While node); |
| 15 T visitDo(Do node); | 15 T visitDo(Do node); |
| (...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 830 /** Contains the pattern and the flags.*/ | 830 /** Contains the pattern and the flags.*/ |
| 831 String pattern; | 831 String pattern; |
| 832 | 832 |
| 833 RegExpLiteral(this.pattern); | 833 RegExpLiteral(this.pattern); |
| 834 | 834 |
| 835 accept(NodeVisitor visitor) => visitor.visitRegExpLiteral(this); | 835 accept(NodeVisitor visitor) => visitor.visitRegExpLiteral(this); |
| 836 void visitChildren(NodeVisitor visitor) {} | 836 void visitChildren(NodeVisitor visitor) {} |
| 837 | 837 |
| 838 int get precedenceLevel => PRIMARY; | 838 int get precedenceLevel => PRIMARY; |
| 839 } | 839 } |
| OLD | NEW |