@Override
  public void visitArrowFunction(ArrowFunctionTree tree) {
    newFunctionScope(tree);

    skipBlock(tree.body());
    super.visitArrowFunction(tree);

    leaveScope();
  }