Parse a
(lex-locator abnf::input) → (mv abnf::tree abnf::rest-input)
Function:
(defun lex-locator (abnf::input) (declare (xargs :guard (nat-listp abnf::input))) (let ((__function__ 'lex-locator)) (declare (ignorable __function__)) (b* (((mv abnf::treess abnf::input) (b* (((mv abnf::treess1 abnf::input1) (b* (((mv abnf::tree abnf::input) (lex-program-id abnf::input)) ((when (reserrp abnf::tree)) (mv (reserrf-push abnf::tree) abnf::input)) (abnf::trees1 (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::trees2 (list abnf::tree)) ((mv abnf::tree abnf::input) (lex-identifier abnf::input)) ((when (reserrp abnf::tree)) (mv (reserrf-push abnf::tree) abnf::input)) (abnf::trees3 (list abnf::tree)) (abnf::treess (list abnf::trees1 abnf::trees2 abnf::trees3))) (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 "program-id"))) (:repetition (:repeat 1 (:finite 1)) (:char-val (:insensitive nil "/"))) (:repetition (:repeat 1 (:finite 1)) (:rulename (:rulename "identifier"))))))) abnf::input))) ((when (reserrp abnf::treess)) (mv (reserrf-push abnf::treess) (nat-list-fix abnf::input)))) (mv (abnf::make-tree-nonleaf :rulename? (abnf::rulename "locator") :branches abnf::treess) abnf::input))))
Theorem:
(defthm tree-resultp-of-lex-locator.tree (b* (((mv abnf::?tree abnf::?rest-input) (lex-locator abnf::input))) (abnf::tree-resultp abnf::tree)) :rule-classes :rewrite)
Theorem:
(defthm nat-listp-of-lex-locator.rest-input (b* (((mv abnf::?tree abnf::?rest-input) (lex-locator abnf::input))) (nat-listp abnf::rest-input)) :rule-classes :rewrite)
Theorem:
(defthm len-of-lex-locator-<= (b* (((mv abnf::?tree abnf::?rest-input) (lex-locator abnf::input))) (<= (len abnf::rest-input) (len abnf::input))) :rule-classes :linear)
Theorem:
(defthm len-of-lex-locator-< (b* (((mv abnf::?tree abnf::?rest-input) (lex-locator abnf::input))) (implies (not (reserrp abnf::tree)) (< (len abnf::rest-input) (len abnf::input)))) :rule-classes :linear)
Theorem:
(defthm lex-locator-of-nat-list-fix-input (equal (lex-locator (nat-list-fix abnf::input)) (lex-locator abnf::input)))
Theorem:
(defthm lex-locator-nat-list-equiv-congruence-on-input (implies (acl2::nat-list-equiv abnf::input input-equiv) (equal (lex-locator abnf::input) (lex-locator input-equiv))) :rule-classes :congruence)