Guest User

Untitled

a guest
May 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public void visit(Block block) {
  2. for (ast.VariableDeclaration declaration : block.getVariableDeclarations()) {
  3. declaration.accept(this);
  4. }
  5. for (ast.Statement statement : block.getStatements()) {
  6. statement.accept(this);
  7. }
  8. }
Add Comment
Please, Sign In to add comment