org.scalajs.core.ir

Types

object Types

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Types
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. final case class ArrayType(baseClassName: String, dimensions: Int) extends Type with ReferenceType with Product with Serializable

    Array type.

  2. final case class ClassType(className: String) extends Type with ReferenceType with Product with Serializable

    Class (or interface) type.

  3. final case class RecordType(fields: List[Field]) extends Type with Product with Serializable

    Record type.

  4. sealed trait ReferenceType extends AnyRef

    Reference types (allowed for classOf[], is/asInstanceOf[]).

  5. sealed abstract class Type extends AnyRef

    Type of an term (expression or statement) in the IR.

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. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  6. object AnyType extends Type with Product with Serializable

    Any type (the top type of this type system).

  7. object ArrayType extends Serializable

  8. object BooleanType extends Type with Product with Serializable

    Boolean type.

  9. object DoubleType extends Type with Product with Serializable

    Double type (64-bit).

  10. object FloatType extends Type with Product with Serializable

    Float type (32-bit).

  11. object IntType extends Type with Product with Serializable

    32-bit signed integer type.

  12. object LongType extends Type with Product with Serializable

    64-bit signed integer type.

  13. object NoType extends Type with Product with Serializable

    No type.

  14. object NothingType extends Type with Product with Serializable

    Nothing type (the bottom type of this type system).

  15. object NullType extends Type with Product with Serializable

    The type of null.

  16. object RecordType extends Serializable

  17. object StringType extends Type with Product with Serializable

    String type.

  18. object UndefType extends Type with Product with Serializable

    The type of undefined.

  19. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  20. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  23. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. final def getClass(): Class[_]

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

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

    Definition Classes
    Any
  27. def isSubtype(lhs: Type, rhs: Type)(isSubclass: (String, String) ⇒ Boolean): Boolean

    Tests whether a type lhs is a subtype of rhs (or equal).

    Tests whether a type lhs is a subtype of rhs (or equal). NoType is never a subtype or supertype of anything (including itself). All other types are subtypes of themselves.

    isSubclass

    A function testing whether a class/interface is a subclass of another class/interface.

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

    Definition Classes
    AnyRef
  29. final def notify(): Unit

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

    Definition Classes
    AnyRef
  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  32. def toString(): String

    Definition Classes
    AnyRef → Any
  33. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def zeroOf(tpe: Type)(implicit pos: Position): Literal

    Generates a literal zero of the given type.

Inherited from AnyRef

Inherited from Any

Ungrouped