nitc :: MSignature :: adapt_to_contract
The returned MSignature
is the copy of self
without return type.
# Adapt signature for an contract
#
# The returned `MSignature` is the copy of `self` without return type.
private fun adapt_to_contract: MSignature do return new MSignature(mparameters.to_a, null)
src/contracts.nit:769,2--772,91