(defmacro with-form-object ((variable type &rest initargs) &body body) `(let ((,variable (make-instance ',type ,@initargs))) ,@body ,variable))