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