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