| 280 | } |
| 281 | |
| 282 | bool CompileDesign::elaborate() { |
| 283 | Location loc(BadSymbolId); |
| 284 | Error err2(ErrorDefinition::ELAB_ELABORATING_DESIGN, loc); |
| 285 | ErrorContainer* errors = |
| 286 | new ErrorContainer(getCompiler()->getSymbolTable(), |
| 287 | getCompiler()->getErrorContainer()->getLogListener()); |
| 288 | errors->registerCmdLine(getCompiler()->getCommandLineParser()); |
| 289 | errors->addError(err2); |
| 290 | errors->printMessage(err2, |
| 291 | getCompiler()->getCommandLineParser()->muteStdout()); |
| 292 | delete errors; |
| 293 | return (elaboration_()); |
| 294 | } |
| 295 | |
| 296 | bool CompileDesign::compilation_() { |
| 297 | Design* design = m_compiler->getDesign(); |