MCPcopy Create free account
hub / github.com/argotorg/solidity / nameable

Method nameable

libsolidity/ast/Types.cpp:3304–3313  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3302}
3303
3304bool FunctionType::nameable() const
3305{
3306 return
3307 (m_kind == Kind::Internal || m_kind == Kind::External) &&
3308 !hasBoundFirstArgument() &&
3309 !takesArbitraryParameters() &&
3310 !gasSet() &&
3311 !valueSet() &&
3312 !saltSet();
3313}
3314
3315std::vector<std::tuple<std::string, Type const*>> FunctionType::makeStackItems() const
3316{

Callers 3

visitMethod · 0.45
storeValueMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected