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