Modifying constructor for valid-table structures.
(change-valid-table x
[:filepath <filepath>]
[:scopes <scopes>]
[:externals <externals>]
[:next-uid <next-uid>])
This is an often useful alternative to make-valid-table.
We construct a new valid-table structure that is a copy of
This is an ordinary
Macro:
(defmacro change-valid-table (x &rest args) (std::change-aggregate 'valid-table x args '((:filepath . valid-table->filepath) (:scopes . valid-table->scopes) (:externals . valid-table->externals) (:next-uid . valid-table->next-uid)) 'change-valid-table 'nil))