| 31 | using namespace solidity::util; |
| 32 | |
| 33 | std::string MultiUseYulFunctionCollector::requestedFunctions() |
| 34 | { |
| 35 | std::string result = std::move(m_code); |
| 36 | m_code.clear(); |
| 37 | m_requestedFunctions.clear(); |
| 38 | return result; |
| 39 | } |
| 40 | |
| 41 | std::string MultiUseYulFunctionCollector::createFunction(std::string const& _name, std::function<std::string()> const& _creator) |
| 42 | { |
no test coverage detected