/** Fill this node with a deep copy of the given node. */
  public void copyFrom(QueryTreeNode node) throws StandardException {
    super.copyFrom(node);

    NonStaticMethodCallNode other = (NonStaticMethodCallNode) node;
    this.receiver = (JavaValueNode) getNodeFactory().copyNode(other.receiver, getParserContext());
  }