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