Parse a
(lex-entry abnf::input) → (mv abnf::tree abnf::rest-input)
Function:
(defun lex-entry (abnf::input) (declare (xargs :guard (nat-listp abnf::input))) (let ((__function__ 'lex-entry)) (declare (ignorable __function__)) (b* (((mv abnf::treess abnf::input) (b* (((mv abnf::treess1 abnf::input1) (b* (((mv abnf::tree abnf::input) (lex-cws abnf::input)) ((when (reserrp abnf::tree)) (mv (reserrf-push abnf::tree) abnf::input)) (abnf::trees1 (list abnf::tree)) ((mv abnf::tree abnf::input) (lex-identifier abnf::input)) ((when (reserrp abnf::tree)) (mv (reserrf-push abnf::tree) abnf::input)) (abnf::trees2 (list abnf::tree)) ((mv abnf::tree abnf::input) (lex-ws abnf::input)) ((when (reserrp abnf::tree)) (mv (reserrf-push abnf::tree) abnf::input)) (abnf::trees3 (list abnf::tree)) ((mv abnf::tree abnf::input) (abnf::parse-schars "as" abnf::input)) ((when (reserrp abnf::tree)) (mv (reserrf-push abnf::tree) abnf::input)) (abnf::trees4 (list abnf::tree)) ((mv abnf::tree abnf::input) (lex-ws abnf::input)) ((when (reserrp abnf::tree)) (mv (reserrf-push abnf::tree) abnf::input)) (abnf::trees5 (list abnf::tree)) ((mv abnf::tree abnf::input) (lex-entry-type abnf::input)) ((when (reserrp abnf::tree)) (mv (reserrf-push abnf::tree) abnf::input)) (abnf::trees6 (list abnf::tree)) ((mv abnf::tree abnf::input) (lex-ws abnf::input)) ((when (reserrp abnf::tree)) (mv (reserrf-push abnf::tree) abnf::input)) (abnf::trees7 (list abnf::tree)) ((mv abnf::tree abnf::input) (abnf::parse-ichars ";" abnf::input)) ((when (reserrp abnf::tree)) (mv (reserrf-push abnf::tree) abnf::input)) (abnf::trees8 (list abnf::tree)) (abnf::treess (list abnf::trees1 abnf::trees2 abnf::trees3 abnf::trees4 abnf::trees5 abnf::trees6 abnf::trees7 abnf::trees8))) (mv abnf::treess abnf::input))) ((when (not (reserrp abnf::treess1))) (mv abnf::treess1 abnf::input1))) (mv (reserrf (list :found (list abnf::treess1) :required '(((:repetition (:repeat 1 (:finite 1)) (:rulename (:rulename "cws"))) (:repetition (:repeat 1 (:finite 1)) (:rulename (:rulename "identifier"))) (:repetition (:repeat 1 (:finite 1)) (:rulename (:rulename "ws"))) (:repetition (:repeat 1 (:finite 1)) (:char-val (:sensitive "as"))) (:repetition (:repeat 1 (:finite 1)) (:rulename (:rulename "ws"))) (:repetition (:repeat 1 (:finite 1)) (:rulename (:rulename "entry-type"))) (:repetition (:repeat 1 (:finite 1)) (:rulename (:rulename "ws"))) (:repetition (:repeat 1 (:finite 1)) (:char-val (:insensitive nil ";"))))))) abnf::input))) ((when (reserrp abnf::treess)) (mv (reserrf-push abnf::treess) (nat-list-fix abnf::input)))) (mv (abnf::make-tree-nonleaf :rulename? (abnf::rulename "entry") :branches abnf::treess) abnf::input))))
Theorem:
(defthm tree-resultp-of-lex-entry.tree (b* (((mv abnf::?tree abnf::?rest-input) (lex-entry abnf::input))) (abnf::tree-resultp abnf::tree)) :rule-classes :rewrite)
Theorem:
(defthm nat-listp-of-lex-entry.rest-input (b* (((mv abnf::?tree abnf::?rest-input) (lex-entry abnf::input))) (nat-listp abnf::rest-input)) :rule-classes :rewrite)
Theorem:
(defthm len-of-lex-entry-<= (b* (((mv abnf::?tree abnf::?rest-input) (lex-entry abnf::input))) (<= (len abnf::rest-input) (len abnf::input))) :rule-classes :linear)
Theorem:
(defthm len-of-lex-entry-< (b* (((mv abnf::?tree abnf::?rest-input) (lex-entry abnf::input))) (implies (not (reserrp abnf::tree)) (< (len abnf::rest-input) (len abnf::input)))) :rule-classes :linear)
Theorem:
(defthm lex-entry-of-nat-list-fix-input (equal (lex-entry (nat-list-fix abnf::input)) (lex-entry abnf::input)))
Theorem:
(defthm lex-entry-nat-list-equiv-congruence-on-input (implies (acl2::nat-list-equiv abnf::input input-equiv) (equal (lex-entry abnf::input) (lex-entry input-equiv))) :rule-classes :congruence)