コード例 #1
0
ファイル: SyntaxTreeVisitor.java プロジェクト: aehlig/bazel
 public void visit(ForStatement node) {
   visit(node.getVariable().getExpression());
   visit(node.getCollection());
   visitAll(node.block());
 }