DiagnosticReporter
abstract
class DiagnosticReporter {
nothrow
DiagnosticHandler prevHandler;
}
A destructor is present on this object, but not explicitly documented in the source.
- deprecation
bool deprecation(const ref Loc loc, const(char)* format, va_list args, const(char)* p1, const(char)* p2)
Reports a deprecation message.
- deprecationCount
int deprecationCount()
- deprecationSupplemental
bool deprecationSupplemental(const ref Loc loc, const(char)* format, va_list args, const(char)* p1, const(char)* p2)
Reports additional details about a deprecation message.
- error
bool error(const ref Loc loc, const(char)* format, va_list args, const(char)* p1, const(char)* p2)
Reports an error message.
- errorCount
int errorCount()
- errorSupplemental
bool errorSupplemental(const ref Loc loc, const(char)* format, va_list args, const(char)* p1, const(char)* p2)
Reports additional details about an error message.
- warning
bool warning(const ref Loc loc, const(char)* format, va_list args, const(char)* p1, const(char)* p2)
Reports a warning message.
- warningCount
int warningCount()
- warningSupplemental
bool warningSupplemental(const ref Loc loc, const(char)* format, va_list args, const(char)* p1, const(char)* p2)
Reports additional details about a warning message.
Interface for diagnostic reporting.