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