trait ReplReporter extends Reporter

Source
Interface.scala
Linear Supertypes
Reporter, Reporter, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReplReporter
  2. Reporter
  3. Reporter
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class Severity extends AnyRef
    Definition Classes
    Reporter

Abstract Value Members

  1. abstract def currentRequest: ReplRequest

    Currently executing request (used to determine position of error in terms of user-submitted code)

    Currently executing request (used to determine position of error in terms of user-submitted code)

    TODO: should no longer be needed if we do wrapping after type checking

  2. abstract def currentRequest_=(req: ReplRequest): Unit

    Set currently executing request.

  3. abstract def info0(pos: Position, msg: String, severity: Severity, force: Boolean): Unit
    Attributes
    protected
    Definition Classes
    Reporter
  4. abstract def isDebug: Boolean
  5. abstract def isTrace: Boolean
  6. abstract def out: PrintWriter
  7. abstract def printMessage(msg: String): Unit

    Print message (info/warning/error).

    Print message (info/warning/error). By default, messages beyond a certain length are truncated (see withoutTruncating), and internal repl wrapping is removed (see withoutUnwrapping and unmangleInterpreterOutput). To suppress all output, use suppressOutput

  8. abstract def printResult(result: Either[String, String]): Unit

    Print result (Right --> success, Left --> error)

  9. abstract def printResults: Boolean

    Whether we're printing results (should only be used from the shell).

  10. abstract def suppressOutput[T](body: ⇒ T): T

    Don't print any errors/messages/echos during the execution of body.

  11. abstract def togglePrintResults(): Unit

    Toggle whether to print results (should only be used from the shell).

  12. abstract def withoutPrintingResults[T](body: ⇒ T): T

    Don't print result lines.

  13. abstract def withoutTruncating[T](body: ⇒ T): T

    Suppress truncation during the executing of body.

  14. abstract def withoutUnwrapping(body: ⇒ Unit): Unit

    Do not remove interpreter wrappers ($iw etc) from all output during the execution of body.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ReplReporter to any2stringadd[ReplReporter] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ReplReporter, B)
    Implicit
    This member is added by an implicit conversion from ReplReporter to ArrowAssoc[ReplReporter] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. lazy val ERROR: Severity
    Definition Classes
    Reporter → Reporter
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. var cancelled: Boolean
    Definition Classes
    Reporter
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  10. def comment(pos: Position, msg: String): Unit
    Definition Classes
    Reporter
  11. def count(severity: Severity): Int
    Definition Classes
    Reporter → Reporter
  12. def debug(msg: ⇒ String): Unit
  13. def echo(msg: String): Unit

    For sending a message which should not be labelled as a warning/error, but also shouldn't require -verbose to be visible.

    For sending a message which should not be labelled as a warning/error, but also shouldn't require -verbose to be visible.

    Definition Classes
    Reporter
  14. def echo(pos: Position, msg: String): Unit
    Definition Classes
    Reporter
  15. def ensuring(cond: (ReplReporter) ⇒ Boolean, msg: ⇒ Any): ReplReporter
    Implicit
    This member is added by an implicit conversion from ReplReporter to Ensuring[ReplReporter] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: (ReplReporter) ⇒ Boolean): ReplReporter
    Implicit
    This member is added by an implicit conversion from ReplReporter to Ensuring[ReplReporter] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean, msg: ⇒ Any): ReplReporter
    Implicit
    This member is added by an implicit conversion from ReplReporter to Ensuring[ReplReporter] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean): ReplReporter
    Implicit
    This member is added by an implicit conversion from ReplReporter to Ensuring[ReplReporter] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  21. def error(pos: Position, msg: String): Unit
    Definition Classes
    Reporter
  22. def errorCount: Int
    Definition Classes
    Reporter
  23. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. def finish(): Unit
    Definition Classes
    Reporter
  25. def flush(): Unit
    Definition Classes
    Reporter
  26. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ReplReporter to StringFormat[ReplReporter] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  27. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  28. def hasErrors: Boolean
    Definition Classes
    Reporter → Reporter
  29. def hasWarnings: Boolean
    Definition Classes
    Reporter
  30. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  31. final def info(pos: Position, msg: String, force: Boolean): Unit

    Informational messages.

    Informational messages. If !force, they may be suppressed.

    Definition Classes
    Reporter
  32. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  33. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  34. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  35. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  36. def rerunWithDetails(setting: Setting, name: String): String
    Definition Classes
    Reporter
  37. def reset(): Unit
    Definition Classes
    Reporter → Reporter
  38. def resetCount(severity: Severity): Unit
    Definition Classes
    Reporter → Reporter
  39. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  40. def toString(): String
    Definition Classes
    AnyRef → Any
  41. def trace(msg: ⇒ String): Unit
  42. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  45. def warning(pos: Position, msg: String): Unit
    Definition Classes
    Reporter
  46. def warningCount: Int
    Definition Classes
    Reporter
  47. def [B](y: B): (ReplReporter, B)
    Implicit
    This member is added by an implicit conversion from ReplReporter to ArrowAssoc[ReplReporter] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
  48. object INFO extends Severity
    Definition Classes
    Reporter → Reporter
  49. object WARNING extends Severity
    Definition Classes
    Reporter → Reporter

Inherited from Reporter

Inherited from Reporter

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ReplReporter to any2stringadd[ReplReporter]

Inherited by implicit conversion StringFormat from ReplReporter to StringFormat[ReplReporter]

Inherited by implicit conversion Ensuring from ReplReporter to Ensuring[ReplReporter]

Inherited by implicit conversion ArrowAssoc from ReplReporter to ArrowAssoc[ReplReporter]

Ungrouped