| 100 | } |
| 101 | |
| 102 | void PythonGenerator::parseSubtemplates() |
| 103 | { |
| 104 | const char *templateName = "py_coders"; |
| 105 | try |
| 106 | { |
| 107 | parse(kPyCoders, m_templateData); |
| 108 | } |
| 109 | catch (TemplateException &e) |
| 110 | { |
| 111 | throw TemplateException(format_string("Template %s: %s", templateName, e.what())); |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | void PythonGenerator::generate() |
| 116 | { |
nothing calls this directly
no test coverage detected