| 57 | } |
| 58 | |
| 59 | std::string YulUtilFunctions::identityFunction() |
| 60 | { |
| 61 | std::string functionName = "identity"; |
| 62 | return m_functionCollector.createFunction("identity", [&](std::vector<std::string>& _args, std::vector<std::string>& _rets) { |
| 63 | _args.push_back("value"); |
| 64 | _rets.push_back("ret"); |
| 65 | return "ret := value"; |
| 66 | }); |
| 67 | } |
| 68 | |
| 69 | std::string YulUtilFunctions::combineExternalFunctionIdFunction() |
| 70 | { |
nothing calls this directly
no test coverage detected