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