| 50 | } |
| 51 | |
| 52 | void Program::error ( const string & str, const string & extra, const string & fixme, const LineInfo & at, CompilationError cerr ) { |
| 53 | errors.emplace_back(str,extra,fixme,at,cerr); |
| 54 | failToCompile = true; |
| 55 | } |
| 56 | |
| 57 | // Identify the "not_resolved_yet" follow-on family by numeric range. |
| 58 | // All `not_resolved_yet_*` codes live in the 31300-31399 block (the |
no outgoing calls
no test coverage detected