scala.tools.nsc.typechecker

TypeDiagnostics

trait TypeDiagnostics extends AnyRef

An interface to enable higher configurability of diagnostic messages regarding type errors. This is barely a beginning as error messages are distributed far and wide across the codebase. The plan is to partition error messages into some broad groups and provide some mechanism for being more or less verbose on a selective basis. Possible groups include such examples as

arity errors kind errors variance errors ambiguity errors volatility/stability errors implementation restrictions

And more, and there is plenty of overlap, so it'll be a process.

Self Type
Analyzer
Source
TypeDiagnostics.scala
Version

1.0

Linear Supertypes
AnyRef, Any
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. TypeDiagnostics
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by any2stringfmt
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. case class TypeDiag(tp: Global.Type, sym: Global.Symbol) extends Ordered[Analyzer.TypeDiag] with Product with Serializable

  2. trait TyperDiagnostics extends AnyRef

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from TypeDiagnostics to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (TypeDiagnostics, B)

    Implicit information
    This member is added by an implicit conversion from TypeDiagnostics to ArrowAssoc[TypeDiagnostics] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  8. def abstractVarMessage(sym: Global.Symbol): String

    An explanatory note to be added to error messages when there's a problem with abstract var defs

  9. def alternatives(tree: Global.Tree): List[Global.Type]

  10. def alternativesString(tree: Global.Tree): String

  11. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  12. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  13. def decodeWithKind(name: Global.Name, owner: Global.Symbol): String

  14. def disambiguate(ss: List[String]): collection.immutable.List[String]

  15. def ensuring(cond: (TypeDiagnostics) ⇒ Boolean, msg: ⇒ Any): TypeDiagnostics

    Implicit information
    This member is added by an implicit conversion from TypeDiagnostics to Ensuring[TypeDiagnostics] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: (TypeDiagnostics) ⇒ Boolean): TypeDiagnostics

    Implicit information
    This member is added by an implicit conversion from TypeDiagnostics to Ensuring[TypeDiagnostics] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean, msg: ⇒ Any): TypeDiagnostics

    Implicit information
    This member is added by an implicit conversion from TypeDiagnostics to Ensuring[TypeDiagnostics] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean): TypeDiagnostics

    Implicit information
    This member is added by an implicit conversion from TypeDiagnostics to Ensuring[TypeDiagnostics] performed by method any2Ensuring 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 existentialContext(tp: Global.Type): String

  22. def explainAlias(tp: Global.Type): String

  23. def explainAnyVsAnyRef(found: Global.Type, req: Global.Type): String

  24. def explainVariance(found: Global.Type, req: Global.Type): String

    Look through the base types of the found type for any which might have been valid subtypes if given conformant type arguments.

    Look through the base types of the found type for any which might have been valid subtypes if given conformant type arguments. Examine those for situations where the type error would have been eliminated if the variance were different. In such cases, append an additional explanatory message.

    TODO: handle type aliases better.

  25. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  26. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from TypeDiagnostics to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  27. def foundReqMsg(found: Global.Type, req: Global.Type): String

  28. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  29. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  30. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  31. def linePrecedes(t1: Global.Tree, t2: Global.Tree): Boolean

  32. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  33. def noErroneousSyms(syms: Global.Symbol*): Boolean

  34. def noErroneousTrees(trees: Global.Tree*): Boolean

  35. def noErroneousTypes(tps: Global.Type*): Boolean

    The common situation of making sure nothing is erroneous could be nicer if Symbols, Types, and Trees all implemented some common interface in which isErroneous and similar would be placed.

  36. final def notify(): Unit

    Definition Classes
    AnyRef
  37. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  38. def posPrecedes(p1: Global.Position, p2: Global.Position): Boolean

    Does the positioned line assigned to t1 precede that of t2?

  39. def restrictionError(pos: Global.Position, unit: Global.CompilationUnit, msg: String): Unit

  40. def restrictionWarning(pos: Global.Position, unit: Global.CompilationUnit, msg: String): Unit

    For errors which are artifacts of the implementation: such messages indicate that the restriction may be lifted in the future.

  41. def setAddendum(pos: Global.Position, msg: () ⇒ String): Unit

  42. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  43. def toString(): String

    Definition Classes
    AnyRef → Any
  44. def treeSymTypeMsg(tree: Global.Tree): String

  45. def typingInPattern[T](body: ⇒ T): T

    Devising new ways of communicating error info out of desperation to work on error messages.

    Devising new ways of communicating error info out of desperation to work on error messages. This is used by typedPattern to wrap its business so we can generate a sensible error message when things go south.

  46. def underlyingSymbol(member: Global.Symbol): Global.Symbol

    The symbol which the given accessor represents (possibly in part).

    The symbol which the given accessor represents (possibly in part). This is used for error messages, where we want to speak in terms of the actual declaration or definition, not in terms of the generated setters and getters.

  47. def varianceWord(sym: Global.Symbol): String

  48. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  49. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  50. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  51. def withAddendum(pos: Global.Position): (String) ⇒ String

  52. def withDisambiguation[T](locals: List[Global.Symbol], types: Global.Type*)(op: ⇒ T): T

    Given any number of types, alters the name information in the symbols until they can be distinguished from one another: then executes the given code.

    Given any number of types, alters the name information in the symbols until they can be distinguished from one another: then executes the given code. The names are restored and the result is returned.

  53. def [B](y: B): (TypeDiagnostics, B)

    Implicit information
    This member is added by an implicit conversion from TypeDiagnostics to ArrowAssoc[TypeDiagnostics] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implict Value Members

  1. val self: Any

    Implicit information
    This member is added by an implicit conversion from TypeDiagnostics to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (typeDiagnostics: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from TypeDiagnostics to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (typeDiagnostics: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: TypeDiagnostics

    Implicit information
    This member is added by an implicit conversion from TypeDiagnostics to ArrowAssoc[TypeDiagnostics] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (typeDiagnostics: ArrowAssoc[TypeDiagnostics]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: TypeDiagnostics

    Implicit information
    This member is added by an implicit conversion from TypeDiagnostics to Ensuring[TypeDiagnostics] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (typeDiagnostics: Ensuring[TypeDiagnostics]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from TypeDiagnostics to StringAdd

Inherited by implicit conversion any2stringfmt from TypeDiagnostics to StringFormat

Inherited by implicit conversion any2ArrowAssoc from TypeDiagnostics to ArrowAssoc[TypeDiagnostics]

Inherited by implicit conversion any2Ensuring from TypeDiagnostics to Ensuring[TypeDiagnostics]

Ungrouped