| 225 | } |
| 226 | |
| 227 | void ErrorReporter::typeError(ErrorId _error, SourceLocation const& _location, SecondarySourceLocation const& _secondaryLocation, std::string const& _description) |
| 228 | { |
| 229 | error( |
| 230 | _error, |
| 231 | Error::Type::TypeError, |
| 232 | _location, |
| 233 | _secondaryLocation, |
| 234 | _description |
| 235 | ); |
| 236 | } |
| 237 | |
| 238 | void ErrorReporter::typeError(ErrorId _error, SourceLocation const& _location, std::string const& _description) |
| 239 | { |
no outgoing calls
no test coverage detected