Event to record a defgrammar call in the table.
(defgrammar-table-add call) → event
Function:
(defun defgrammar-table-add (call) (declare (xargs :guard (pseudo-event-formp call))) (let ((__function__ 'defgrammar-table-add)) (declare (ignorable __function__)) (cons 'table (cons 'defgrammar-table (cons (cons 'quote (cons call 'nil)) '(nil))))))
Theorem:
(defthm pseudo-event-formp-of-defgrammar-table-add (b* ((event (defgrammar-table-add call))) (pseudo-event-formp event)) :rule-classes :rewrite)