Trait

miniboxing.plugin.metadata

MiniboxMethodInfo

Related Doc: package metadata

Permalink

trait MiniboxMethodInfo extends AnyRef

Self Type
MiniboxInjectComponent
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. MiniboxMethodInfo
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. case class DeferredTypeTag(tparam: scala.tools.nsc.Global.Symbol) extends MiniboxInjectComponent.MethodInfo with MiniboxInjectComponent.Tag with Product with Serializable

    Permalink

    When the newly introduced symbol is abstract and does not have an implementation at all.

  2. case class DeferredTypeTagImplementation(tparam: scala.tools.nsc.Global.Symbol) extends MiniboxInjectComponent.MethodInfo with MiniboxInjectComponent.Tag with Product with Serializable

    Permalink

    When the newly introduced symbol is abstract and does not have an implementation at all.

  3. case class FieldAccessor(field: scala.tools.nsc.Global.Symbol) extends MiniboxInjectComponent.MethodInfo with Product with Serializable

    Permalink

    Method to access field, in a specialized class should be rewired to the actual field.

  4. case class ForwardTo(base: scala.tools.nsc.Global.Symbol)(overrider: Boolean) extends MiniboxInjectComponent.MethodInfo with Product with Serializable

    Permalink

    The symbol with this information needs a body that forwards to method.

    The symbol with this information needs a body that forwards to method.

    E.g. apply forwards to apply$mcII$sp in Function1$mcII$sp.

  5. sealed abstract class MethodInfo extends AnyRef

    Permalink

    This class should be extended by various classes containing information about different types of methods that are created during specialization.

  6. case class SpecializedImplementationOf(member: scala.tools.nsc.Global.Symbol) extends MiniboxInjectComponent.MethodInfo with Product with Serializable

    Permalink

    In the specialized class the function which will have the implementation will be the specialized one and the generic one will forward to it.

    In the specialized class the function which will have the implementation will be the specialized one and the generic one will forward to it.

    E.g. apply$mcII$sp uses as implementation the body of apply which forwards to it. So, method will be apply.

  7. trait Tag extends AnyRef

    Permalink

    Marker trait for tags

  8. case class TypeTagParam(tparam: scala.tools.nsc.Global.Symbol) extends MiniboxInjectComponent.MethodInfo with MiniboxInjectComponent.Tag with Product with Serializable

    Permalink

    When the newly introduced symbol is abstract and does not have an implementation at all.

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object Interface extends MiniboxInjectComponent.MethodInfo with Product with Serializable

    Permalink

    When the newly introduced symbol is abstract and does not have an implementation at all.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

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

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  13. object memberSpecializationInfo extends HashMap[scala.tools.nsc.Global.Symbol, MiniboxInjectComponent.MethodInfo]

    Permalink

    While running the MiniboxInfoTransform we record information about how the newly created methods should be implemented when reached by the MiniboxTreeTransformation.

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

    Permalink
    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  18. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped