| 1216 | } |
| 1217 | |
| 1218 | bool Compiler::parseLibrariesDef_() { |
| 1219 | ParseLibraryDef* libParser = new ParseLibraryDef( |
| 1220 | m_commandLineParser, m_errors, m_symbolTable, m_librarySet, m_configSet); |
| 1221 | bool result = libParser->parseLibrariesDefinition(); |
| 1222 | delete libParser; |
| 1223 | return result; |
| 1224 | } |
| 1225 | } // namespace SURELOG |
nothing calls this directly
no test coverage detected