| 36 | return LHS + " = " + RHS + ";"; |
| 37 | } |
| 38 | std::string SrcGenerator::genDeclStmt(const std::string &TypeStr, |
| 39 | const std::string &VarName) { |
| 40 | return TypeStr + " " + VarName + ";"; |
| 41 | } |
| 42 | |
| 43 | std::string SrcGenerator::genTypeStr(const Type &Target) { |
| 44 | return Target.getNameSpace() + |
nothing calls this directly
no test coverage detected