- errorCount
int errorCount()
- warningCount
int warningCount()
- deprecationCount
int deprecationCount()
- error
bool error(Loc loc, const(char)* format, va_list args, const(char)* p1, const(char)* p2)
Reports an error message.
- errorSupplemental
bool errorSupplemental(Loc loc, const(char)* format, va_list args, const(char)* p1, const(char)* p2)
Reports additional details about an error message.
- warning
bool warning(Loc loc, const(char)* format, va_list args, const(char)* p1, const(char)* p2)
Reports a warning message.
- warningSupplemental
bool warningSupplemental(Loc loc, const(char)* format, va_list args, const(char)* p1, const(char)* p2)
Reports additional details about a warning message.
- deprecation
bool deprecation(Loc loc, const(char)* format, va_list args, const(char)* p1, const(char)* p2)
Reports a deprecation message.
- deprecationSupplemental
bool deprecationSupplemental(Loc loc, const(char)* format, va_list args, const(char)* p1, const(char)* p2)
Reports additional details about a deprecation message.
Diagnostic reporter which prints the diagnostic messages to stderr.
This is usually the default diagnostic reporter.