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