| 65 | |
| 66 | |
| 67 | std::string Codegen::write(std::string_view code) { |
| 68 | if(save){ |
| 69 | res+=code; |
| 70 | } |
| 71 | else{ |
| 72 | m_file << code; |
| 73 | } |
| 74 | return res; |
| 75 | } |
| 76 | |
| 77 | std::string Codegen::searchDefaultModule(std::string path, |
| 78 | std::string moduleName) { |
nothing calls this directly
no outgoing calls
no test coverage detected