Packages

case class StaticFactory(producer: MethodInsnNode, loadInitialValues: Option[List[AbstractInsnNode]]) extends BoxCreation with Product with Serializable

Source
BoxUnbox.scala
Linear Supertypes
Serializable, java.io.Serializable, Product, Equals, BoxCreation, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StaticFactory
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. BoxCreation
  7. AnyRef
  8. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StaticFactory(producer: MethodInsnNode, loadInitialValues: Option[List[AbstractInsnNode]])

Value Members

  1. def allInsns: Set[AbstractInsnNode]
    Definition Classes
    BoxCreation
  2. def boxConsumers(prodCons: (backendUtils)#ProdConsAnalyzer, ultimate: Boolean): Set[AbstractInsnNode]

    The consumers of the box produced by this box creation.

    The consumers of the box produced by this box creation. If ultimate is true, then the final consumers are returned (e.g., an unbox operation), otherwise direct consumers (e.g., a store operation).

    Definition Classes
    BoxCreation
  3. val loadInitialValues: Option[List[AbstractInsnNode]]
    Definition Classes
    StaticFactoryBoxCreation
  4. val producer: MethodInsnNode

    The instruction that produces the box value; for instance creations, the NEW operation.

    The instruction that produces the box value; for instance creations, the NEW operation.

    Definition Classes
    StaticFactoryBoxCreation
  5. def valuesConsumer: MethodInsnNode

    The instruction that consumes the boxed values; for instance creations, the init call.

    The instruction that consumes the boxed values; for instance creations, the init call.

    Definition Classes
    BoxCreation