trait TypeKinds extends SubComponent

Glue representation of types as seen from the IR but still with a reference to the Symbols.

Self Type
GenJSCode
Linear Supertypes
SubComponent, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TypeKinds
  2. SubComponent
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class ARRAY extends GenJSCode.TypeKind with Product with Serializable

    An array

  2. case class FLOAT extends GenJSCode.ValueTypeKind with Product with Serializable

    Floating-point number (Float or Double).

  3. case class INT extends GenJSCode.ValueTypeKind with Product with Serializable

    Integer number (Byte, Short, Char or Int).

  4. case class REFERENCE extends GenJSCode.TypeKindButArray with Product with Serializable

    An object

  5. abstract class StdPhase extends GlobalPhase
    Definition Classes
    SubComponent
  6. sealed abstract class TypeKind extends AnyRef

    Glue representation of types as seen from the IR but still with a reference to the Symbols.

  7. sealed abstract class TypeKindButArray extends GenJSCode.TypeKind
  8. sealed abstract class ValueTypeKind extends GenJSCode.TypeKindButArray

Abstract Value Members

  1. abstract val global: Global
    Definition Classes
    SubComponent
  2. abstract def newPhase(prev: Phase): Phase
    Definition Classes
    SubComponent
  3. abstract val phaseName: String
    Definition Classes
    SubComponent
  4. abstract val runsAfter: List[String]
    Definition Classes
    SubComponent
  5. abstract val runsRightAfter: Option[String]
    Definition Classes
    SubComponent

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. lazy val BooleanKind: GenJSCode.BOOL.type
  5. lazy val ByteKind: GenJSCode.INT
  6. lazy val CharKind: GenJSCode.INT
  7. lazy val DoubleKind: GenJSCode.FLOAT
  8. lazy val FloatKind: GenJSCode.FLOAT
  9. lazy val IntKind: GenJSCode.INT
  10. lazy val LongKind: GenJSCode.LONG.type
  11. lazy val ObjectReference: GenJSCode.REFERENCE
  12. lazy val ShortKind: GenJSCode.INT
  13. lazy val VoidKind: GenJSCode.VOID.type
  14. final def afterOwnPhase[T](op: ⇒ T): T
    Definition Classes
    SubComponent
    Annotations
    @inline()
  15. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  16. final def beforeOwnPhase[T](op: ⇒ T): T
    Definition Classes
    SubComponent
    Annotations
    @inline()
  17. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  18. def enabled: Boolean
    Definition Classes
    SubComponent
  19. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  21. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. def hashCode(): Int
    Definition Classes
    SubComponent → AnyRef → Any
  24. val initial: Boolean
    Definition Classes
    SubComponent
  25. val internal: Boolean
    Definition Classes
    SubComponent
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. def ownPhase: Phase
    Definition Classes
    SubComponent
  31. def phaseNewFlags: Long
    Definition Classes
    SubComponent
  32. def phaseNextFlags: Long
    Definition Classes
    SubComponent
  33. lazy val primitiveTypeMap: Map[scala.tools.nsc.Global.Symbol, GenJSCode.TypeKind]

    TypeKinds for Scala primitive types.

  34. val requires: List[String]
    Definition Classes
    SubComponent
  35. val runsBefore: List[String]
    Definition Classes
    SubComponent
  36. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  37. val terminal: Boolean
    Definition Classes
    SubComponent
  38. def toIRType(t: scala.tools.nsc.Global.Type): Type
  39. def toString(): String
    Definition Classes
    AnyRef → Any
  40. def toTypeKind(t: scala.tools.nsc.Global.Type): GenJSCode.TypeKind

    Return the TypeKind of the given type

    Return the TypeKind of the given type

    Call to .normalize fixes #3003 (follow type aliases). Otherwise, arrayOrClassType below would return ObjectReference.

  41. def toTypeRef(t: scala.tools.nsc.Global.Type): TypeRef
  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. object BOOL extends GenJSCode.ValueTypeKind with Product with Serializable

    Boolean

  46. object LONG extends GenJSCode.ValueTypeKind with Product with Serializable

    Long

  47. object NOTHING extends GenJSCode.TypeKindButArray with Product with Serializable

    Nothing

  48. object NULL extends GenJSCode.TypeKindButArray with Product with Serializable

    Null

  49. object VOID extends GenJSCode.TypeKindButArray with Product with Serializable

    The void, for trees that can only appear in statement position.

Inherited from SubComponent

Inherited from AnyRef

Inherited from Any

Ungrouped