| 16 | using namespace std; |
| 17 | |
| 18 | SyntaxErrorLogger::SyntaxErrorLogger() : |
| 19 | antlr4::ANTLRErrorListener(), file_line_map(nullptr) { |
| 20 | } |
| 21 | |
| 22 | void SyntaxErrorLogger::check_errors() { |
| 23 | stringstream error_msg; |
nothing calls this directly
no outgoing calls
no test coverage detected