| 299 | } |
| 300 | |
| 301 | void PreprocessFile::addError(Error& error) { |
| 302 | if (!m_instructions.m_mute) |
| 303 | getCompileSourceFile()->getErrorContainer()->addError(error); |
| 304 | } |
| 305 | |
| 306 | std::string_view PreprocessFile::getSymbol(SymbolId id) const { |
| 307 | return getCompileSourceFile()->getSymbolTable()->getSymbol(id); |
no test coverage detected