Modifying constructor for decl structures.
(change-decl x [:name <name>] [:type <type>])
This is an often useful alternative to make-decl.
We construct a new decl structure that is a copy of
This is an ordinary
Macro:
(defmacro change-decl (x &rest args) (std::change-aggregate 'decl x args '((:name . decl->name) (:type . decl->type)) 'change-decl 'nil))