Modifying constructor for vl-portdecl structures.
(change-vl-portdecl x [:name <name>] [:loc <loc>] [:dir <dir>] [:type <type>] [:default <default>] [:nettype <nettype>] [:atts <atts>])
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) (:loc . vl-portdecl->loc) (:dir . vl-portdecl->dir) (:type . vl-portdecl->type) (:default . vl-portdecl->default) (:nettype . vl-portdecl->nettype) (:atts . vl-portdecl->atts)) 'change-vl-portdecl 'remake-vl-portdecl))