Case macro for the different kinds of stmt structures.
This is an ACL2::fty sum-type case macro, typically introduced by fty::defflexsum or fty::deftagsum. It allows you to safely check the type of a stmt structure, or to split into cases based on its type.
In its short form,
(stmt-case x :labeled)
is essentially just a safer alternative to writing:
(equal (stmt-kind x) :labeled)
Why is using stmt-case safer? When we directly inspect the
kind with
In its longer form,
(stmt-case x :labeled ... :compound ... :expr ... :if ... :ifelse ... :switch ... :while ... :dowhile ... :for-expr ... :for-decl ... :for-ambig ... :goto ... :continue ... :break ... :return ... :asm ...)
It is also possible to consolidate ``uninteresting'' cases using
For convenience, the case macro automatically binds the fields of