Reporter

dotty.tools.dotc.reporting.Reporter
See theReporter companion object
abstract class Reporter extends ReporterResult

This interface provides methods to issue information, warning and error messages.

Attributes

Companion:
object
Graph
Supertypes
trait ReporterResult
class Object
trait Matchable
class Any
Known subtypes

Members list

Concise view

Value members

Abstract methods

def doReport(dia: Diagnostic)(using Context): Unit

Report a diagnostic

Report a diagnostic

Attributes

Concrete methods

def addUnreported(key: String, n: Int): Unit

All errors reported by this reporter (ignoring outer reporters)

All errors reported by this reporter (ignoring outer reporters)

Attributes

The number of errors reported by this reporter (ignoring outer reporters)

The number of errors reported by this reporter (ignoring outer reporters)

Attributes

Have errors been reported by this reporter, or in the case where this is a StoreReporter, by an outer reporter?

Have errors been reported by this reporter, or in the case where this is a StoreReporter, by an outer reporter?

Attributes

def flush()(using Context): Unit

Issue all messages in this reporter to next outer one, or make sure they are written.

Issue all messages in this reporter to next outer one, or make sure they are written.

Attributes

Have errors been reported by this reporter (ignoring outer reporters)?

Have errors been reported by this reporter (ignoring outer reporters)?

Attributes

Were sticky errors reported? Overridden in StoreReporter.

Were sticky errors reported? Overridden in StoreReporter.

Attributes

Does this reporter contain errors that have yet to be reported by its outer reporter ? Note: this is always false when there is no outer reporter.

Does this reporter contain errors that have yet to be reported by its outer reporter ? Note: this is always false when there is no outer reporter.

Attributes

Does this reporter contain any message that have yet to be reported by its outer reporter ? This includes any warning stored in unreportedWarnings which need to be propagated to get an accurate count of unreported warnings in the outer reporter.

Does this reporter contain any message that have yet to be reported by its outer reporter ? This includes any warning stored in unreportedWarnings which need to be propagated to get an accurate count of unreported warnings in the outer reporter.

Attributes

Have warnings been reported by this reporter (ignoring outer reporters)?

Have warnings been reported by this reporter (ignoring outer reporters)?

Attributes

def incomplete(dia: Diagnostic)(using Context): Unit

Should this diagnostic not be reported at all?

Should this diagnostic not be reported at all?

Attributes

Issue the diagnostic, ignoring -Wconf and @nowarn configurations, but still honouring -nowarn, -Werror, and conditional warnings.

Issue the diagnostic, ignoring -Wconf and @nowarn configurations, but still honouring -nowarn, -Werror, and conditional warnings.

Attributes

If this reporter buffers messages, all buffered messages, otherwise Nil

If this reporter buffers messages, all buffered messages, otherwise Nil

Attributes

def printSummary()(using Context): Unit

Print the summary of warnings and errors

Print the summary of warnings and errors

Attributes

If this reporter buffers messages, remove and return all buffered messages.

If this reporter buffers messages, remove and return all buffered messages.

Attributes

def report(dia: Diagnostic)(using Context): Unit
def reportNewFeatureUseSite(featureTrait: Symbol): Unit

Run op and return true if errors were reported by this reporter.

Run op and return true if errors were reported by this reporter.

Attributes

Summary of warnings and errors

Summary of warnings and errors

Attributes

The number of warnings reported by this reporter (ignoring outer reporters)

The number of warnings reported by this reporter (ignoring outer reporters)

Attributes

def withIncompleteHandler[T](handler: ErrorHandler)(op: => T): T
def withoutTruncating[T](body: => T): T

Concrete fields