| 194 | } |
| 195 | |
| 196 | bool CompileSourceFile::initParser() { |
| 197 | if (m_parser == nullptr) |
| 198 | m_parser = new ParseFile(m_fileId, this, m_compilationUnit, m_library, |
| 199 | m_ppResultFileId, |
| 200 | getCommandLineParser()->pythonListener()); |
| 201 | return true; |
| 202 | } |
| 203 | |
| 204 | bool CompileSourceFile::parse_() { |
| 205 | initParser(); |
no test coverage detected