Expand description
Module containing a contract’s types and functions.
contract CallerWithConstructor {
CallerWithConstructorCallee callee;
constructor() { <stmts> }
function callBar() public view returns (uint) { <stmts> }
}
Structs§
- call
BarCall - Function with signature
callBar()
and selector0xacffee6b
. - call
BarReturn - Container type for the return parameters of the
callBar()
function. - constructor
Call - Constructor`.
Enums§
- Caller
With Constructor Calls - Container for all the
CallerWithConstructor
function calls.