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