| 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 package com.google.dart.compiler.ast; | 5 package com.google.dart.compiler.ast; |
| 6 | 6 |
| 7 import java.util.List; | 7 import java.util.List; |
| 8 | 8 |
| 9 /** | 9 /** |
| 10 * A visitor for abstract syntax tree. | 10 * A visitor for abstract syntax tree. |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 } | 186 } |
| 187 | 187 |
| 188 public R visitIdentifier(DartIdentifier node) { | 188 public R visitIdentifier(DartIdentifier node) { |
| 189 return visitExpression(node); | 189 return visitExpression(node); |
| 190 } | 190 } |
| 191 | 191 |
| 192 public R visitIfStatement(DartIfStatement node) { | 192 public R visitIfStatement(DartIfStatement node) { |
| 193 return visitStatement(node); | 193 return visitStatement(node); |
| 194 } | 194 } |
| 195 | 195 |
| 196 public R visitImportCombinator(ImportCombinator node) { |
| 197 return visitNode(node); |
| 198 } |
| 199 |
| 196 public R visitImportDirective(DartImportDirective node) { | 200 public R visitImportDirective(DartImportDirective node) { |
| 197 return visitDirective(node); | 201 return visitDirective(node); |
| 198 } | 202 } |
| 199 | 203 |
| 204 public R visitImportHideCombinator(ImportHideCombinator node) { |
| 205 return visitImportCombinator(node); |
| 206 } |
| 207 |
| 208 public R visitImportShowCombinator(ImportShowCombinator node) { |
| 209 return visitImportCombinator(node); |
| 210 } |
| 211 |
| 200 public R visitInitializer(DartInitializer node) { | 212 public R visitInitializer(DartInitializer node) { |
| 201 return visitNode(node); | 213 return visitNode(node); |
| 202 } | 214 } |
| 203 | 215 |
| 204 public R visitIntegerLiteral(DartIntegerLiteral node) { | 216 public R visitIntegerLiteral(DartIntegerLiteral node) { |
| 205 return visitLiteral(node); | 217 return visitLiteral(node); |
| 206 } | 218 } |
| 207 | 219 |
| 208 public R visitLabel(DartLabel node) { | 220 public R visitLabel(DartLabel node) { |
| 209 return visitStatement(node); | 221 return visitStatement(node); |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 public R visitTypeParameter(DartTypeParameter node) { | 368 public R visitTypeParameter(DartTypeParameter node) { |
| 357 return visitDeclaration(node); | 369 return visitDeclaration(node); |
| 358 } | 370 } |
| 359 | 371 |
| 360 public R visitNativeBlock(DartNativeBlock node) { | 372 public R visitNativeBlock(DartNativeBlock node) { |
| 361 return visitBlock(node); | 373 return visitBlock(node); |
| 362 } | 374 } |
| 363 | 375 |
| 364 public R visitRedirectConstructorInvocation(DartRedirectConstructorInvocation
node) { | 376 public R visitRedirectConstructorInvocation(DartRedirectConstructorInvocation
node) { |
| 365 return visitInvocation(node); | 377 return visitInvocation(node); |
| 366 } | 378 } |
| 367 } | 379 } |
| OLD | NEW |