/**
   * Accept the visitor for all visitable children of this node.
   *
   * @param v the visitor
   * @exception StandardException on error
   */
  void acceptChildren(Visitor v) throws StandardException {
    super.acceptChildren(v);

    if (receiver != null) {
      receiver = (JavaValueNode) receiver.accept(v);
    }
  }