Parse a
(parse-relation-constraint token input) → (mv tree next-token rest-input)
Function:
(defun parse-relation-constraint (token input) (declare (xargs :guard (and (abnf::tree-optionp token) (abnf::tree-listp input)))) (let ((__function__ 'parse-relation-constraint)) (declare (ignorable __function__)) (b* (((pok tree1) (parse-identifier token input)) ((pok tree2) (parse-separator "(" token input)) ((pok tree3) (if (token-stringp ")" token) (mv (abnf::make-tree-nonleaf :rulename? nil :branches nil) token input) (b* (((pok< tree) (parse-expression token input)) ((pok trees) (parse-*-comma-expression token input))) (mv (abnf::make-tree-nonleaf :rulename? nil :branches (list (list tree) trees)) token input)))) ((pok tree4) (parse-separator ")" token input))) (mv (abnf::make-tree-nonleaf :rulename? (abnf::rulename "relation-constraint") :branches (list (list tree1) (list tree2) (list tree3) (list tree4))) token input))))
Theorem:
(defthm tree-resultp-of-parse-relation-constraint.tree (b* (((mv ?tree ?next-token ?rest-input) (parse-relation-constraint token input))) (abnf::tree-resultp tree)) :rule-classes :rewrite)
Theorem:
(defthm tree-optionp-of-parse-relation-constraint.next-token (b* (((mv ?tree ?next-token ?rest-input) (parse-relation-constraint token input))) (abnf::tree-optionp next-token)) :rule-classes :rewrite)
Theorem:
(defthm tree-listp-of-parse-relation-constraint.rest-input (b* (((mv ?tree ?next-token ?rest-input) (parse-relation-constraint token input))) (abnf::tree-listp rest-input)) :rule-classes :rewrite)
Theorem:
(defthm parsize-of-parse-relation-constraint-<= (b* (((mv ?tree ?next-token ?rest-input) (parse-relation-constraint token input))) (<= (parsize next-token rest-input) (parsize token input))) :rule-classes :linear)
Theorem:
(defthm parsize-of-parse-relation-constraint-< (b* (((mv ?tree ?next-token ?rest-input) (parse-relation-constraint token input))) (implies (not (reserrp tree)) (< (parsize next-token rest-input) (parsize token input)))) :rule-classes :linear)
Theorem:
(defthm parse-relation-constraint-of-tree-option-fix-token (equal (parse-relation-constraint (abnf::tree-option-fix token) input) (parse-relation-constraint token input)))
Theorem:
(defthm parse-relation-constraint-tree-option-equiv-congruence-on-token (implies (abnf::tree-option-equiv token token-equiv) (equal (parse-relation-constraint token input) (parse-relation-constraint token-equiv input))) :rule-classes :congruence)
Theorem:
(defthm parse-relation-constraint-of-tree-list-fix-input (equal (parse-relation-constraint token (abnf::tree-list-fix input)) (parse-relation-constraint token input)))
Theorem:
(defthm parse-relation-constraint-tree-list-equiv-congruence-on-input (implies (abnf::tree-list-equiv input input-equiv) (equal (parse-relation-constraint token input) (parse-relation-constraint token input-equiv))) :rule-classes :congruence)