| 3302 | } |
| 3303 | |
| 3304 | bool 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 | |
| 3315 | std::vector<std::tuple<std::string, Type const*>> FunctionType::makeStackItems() const |
| 3316 | { |
no outgoing calls
no test coverage detected