Packages

object Reporter

Source
Reporter.scala
Linear Supertypes
AnyRef, Any
Content Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Reporter
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class AdaptedReporter extends Reporter with ForwardingReporter

    Adapt a reporter to legacy reporter API.

    Adapt a reporter to legacy reporter API. Handle info by forwarding to echo.

  2. trait LimitedReporter extends AnyRef

    A marker trait for adapted reporters that respect maxerrs.

  3. class LimitingReporter extends AdaptedReporter with FilteringReporter with LimitedReporter

    A legacy Reporter adapter that respects -Xmaxerrs and -Xmaxwarns.

Value Members

  1. implicit def adapt reporter to legacy API(reporter: reflect.internal.Reporter): Reporter
  2. def apply(settings: Settings): Reporter

    The usual way to create the configured reporter.

    The usual way to create the configured reporter. Errors are reported through settings.errorFn and also by throwing an exception.

  3. def limitedReporter(settings: Settings, reporter: Reporter): Reporter