Constructor macro for vl-idtoken-p structures.
Syntax:
(make-vl-idtoken [:etext <etext>] [:name <name>])
This is our preferred way to construct vl-idtoken-p structures. It simply conses together a structure with the specified fields.
This macro generates a new vl-idtoken-p structure from scratch. See also change-vl-idtoken, which can "change" an existing structure, instead.
The vl-idtoken-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see make-honsed-vl-idtoken instead.
This is an ordinary
Macro:
(defmacro make-vl-idtoken (&rest args) (std::make-aggregate 'vl-idtoken args '((:etext) (:name)) 'make-vl-idtoken nil))