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