Build a block consisting of a single Java instance method call.
(jblock-imethod target name args) → block
Function:
(defun jblock-imethod (target name args) (declare (xargs :guard (and (jexprp target) (stringp name) (jexpr-listp args)))) (let ((__function__ 'jblock-imethod)) (declare (ignorable __function__)) (jblock-expr (jexpr-imethod target name args))))
Theorem:
(defthm jblockp-of-jblock-imethod (b* ((block (jblock-imethod target name args))) (jblockp block)) :rule-classes :rewrite)