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