| 794 | } |
| 795 | |
| 796 | std::string IRGenerator::generateInitialAssignment(VariableDeclaration const& _varDecl) |
| 797 | { |
| 798 | IRGeneratorForStatements generator(m_context, m_utils, m_optimiserSettings); |
| 799 | generator.initializeLocalVar(_varDecl); |
| 800 | return generator.code(); |
| 801 | } |
| 802 | |
| 803 | std::pair<std::string, std::map<ContractDefinition const*, std::vector<std::string>>> IRGenerator::evaluateConstructorArguments( |
| 804 | ContractDefinition const& _contract |
nothing calls this directly
no test coverage detected