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(arrayTypeRef: ArrayTypeRef) extends Type with Product with Serializable

    Array type.

  2. final case class ArrayTypeRef(baseClassName: String, dimensions: Int) extends TypeRef with Product with Serializable

    Array type.

  3. final case class ClassRef(className: String) extends TypeRef with Product with Serializable

    Class (or interface) type.

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

    Class (or interface) type.

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

    Record type.

  6. sealed abstract class Type extends AnyRef

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

  7. sealed abstract class TypeRef extends AnyRef

    Type reference (allowed for classOf[], is/asInstanceOf[]).

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 ArrayTypeRef extends Serializable

  8. object BooleanType extends Type with Product with Serializable

    Boolean type.

  9. object ByteType extends Type with Product with Serializable

    8-bit signed integer type.

  10. object CharType extends Type with Product with Serializable

    Char type, a 16-bit UTF-16 code unit.

  11. object DoubleType extends Type with Product with Serializable

    Double type (64-bit).

  12. object FloatType extends Type with Product with Serializable

    Float type (32-bit).

  13. object IntType extends Type with Product with Serializable

    32-bit signed integer type.

  14. object LongType extends Type with Product with Serializable

    64-bit signed integer type.

  15. object NoType extends Type with Product with Serializable

    No type.

  16. object NothingType extends Type with Product with Serializable

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

  17. object NullType extends Type with Product with Serializable

    The type of null.

  18. object RecordType extends Serializable

  19. object ShortType extends Type with Product with Serializable

    16-bit signed integer type.

  20. object StringType extends Type with Product with Serializable

    String type.

  21. object UndefType extends Type with Product with Serializable

    The type of undefined.

  22. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  23. def clone(): AnyRef

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

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

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

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

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

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

    Definition Classes
    Any
  30. 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.

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

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

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

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

    Definition Classes
    AnyRef
  35. def toString(): String

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

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

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

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

    Generates a literal zero of the given type.

Inherited from AnyRef

Inherited from Any

Ungrouped