| 1304 | } |
| 1305 | |
| 1306 | static std::string cpp_var_name(const std::string& name) |
| 1307 | { |
| 1308 | std::string prefix = "x_"; |
| 1309 | if(not contains(name, "@")) |
| 1310 | prefix = "p_"; |
| 1311 | return to_c_id(prefix + replace_string(name, ":", "_module_")); |
| 1312 | } |
| 1313 | |
| 1314 | static void print_py_op(std::ostream& os, const operation& op) |
| 1315 | { |
no test coverage detected