Expand description
Side-effect-free syntactic/semantic probes over solar HIR.
Functionsยง
- address_
call_ receiver - Receiver of
<expr>.{call,delegatecall,transfer,send}, including the.call{value: x}(...)option form. - branch_
always_ exits - True when executing
stmtprovably prevents control from continuing past it: areturn,revert/revert(...),require(false, ...),assert(false), a block containing any such statement (any subsequent statements are unreachable), or anifwhose both arms exit. - is_
address_ type - True if
vidis typed asaddress/address payable. - is_
builtin ๐ - True if
exprreferences the named global builtin (msg,tx,this, โฆ). - is_
exit_ ๐call - is_
require_ or_ assert - True if
calleeresolves to the builtinrequireorassert.