| 202 | } |
| 203 | |
| 204 | bool CompileSourceFile::parse_() { |
| 205 | initParser(); |
| 206 | if (!m_parser->parse()) { |
| 207 | return false; |
| 208 | } |
| 209 | bool fatalErrors = m_errors->hasFatalErrors(); |
| 210 | if (fatalErrors) { |
| 211 | return false; |
| 212 | } |
| 213 | return true; |
| 214 | } |
| 215 | |
| 216 | bool CompileSourceFile::preprocess_() { |
| 217 | PreprocessFile::SpecialInstructions instructions( |
nothing calls this directly
no test coverage detected