Packages

p

bloop

reporter

package reporter

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. class ClassicFormat extends DefaultReporterFormat
  2. trait ConfigurableReporter extends AnyRef

    Interface for a reporter that has a configuration.

    Interface for a reporter that has a configuration. This is the API visible from a ReporterFormat.

  3. class DefaultReporterFormat extends ReporterFormat

    Default format for reporter.

  4. final class ObservedReporter extends ZincReporter
  5. final case class Problem extends xsbti.Problem with Product with Serializable

    Describes a problem (error, warning, message, etc.) given to the reporter.

  6. final case class ProblemPerPhase(problem: xsbti.Problem, phase: Option[String]) extends Product with Serializable

    A problem that is mapped to the phase where it occurred.

    A problem that is mapped to the phase where it occurred.

    problem

    A problem reported by Zinc.

    phase

    An optional phase in case compiler reports a problem before a phase is registered.

  7. abstract class Reporter extends ZincReporter

    A flexible reporter whose configuration is provided by a ReporterConfig.

    A flexible reporter whose configuration is provided by a ReporterConfig. This configuration indicated whether to use colors, how to format messages, etc.

    A reporter has internal state and must be instantiated per compilation.

  8. sealed trait ReporterAction extends AnyRef
  9. final case class ReporterConfig(colors: Boolean, shortenPaths: Boolean, columnNumbers: Boolean, reverseOrder: Boolean, showLegend: Boolean, errorColor: String, warningColor: String, infoColor: String, debugColor: String, sourcePathColor: String, errorIdColor: String, format: (Reporter) ⇒ ReporterFormat) extends Product with Serializable

    General configuration for the formats.

    General configuration for the formats. Formats are supposed to be opinionated, and they are free to ignore any of those settings.

  10. abstract class ReporterFormat extends AnyRef

    Describes how messages should be formatted by a ConfigurableReporter.

  11. class ScalacFormat extends ReporterFormat

    A format that mimics that of scalac.

    A format that mimics that of scalac. Adapted from sbt.LoggerReporter Copyright 2002-2009 LAMP/EPFL see LICENSE_Scala Original author: Martin Odersky

  12. trait ZincReporter extends xsbti.Reporter with ConfigurableReporter

Value Members

  1. object ClassicFormat extends (Reporter) ⇒ ReporterFormat
  2. object DefaultReporterFormat extends (Reporter) ⇒ ReporterFormat

    Helper object for easy configuration.

  3. object Problem extends Serializable
  4. object Reporter
  5. object ReporterAction
  6. object ReporterConfig extends Serializable
  7. object ScalacFormat extends (Reporter) ⇒ ReporterFormat

Ungrouped