scala.tools.nsc.backend.jvm.BCodeHelpers

BCAnnotGen

trait BCAnnotGen extends BCInnerClassGen

Source
BCodeHelpers.scala
Linear Supertypes
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BCAnnotGen
  2. BCInnerClassGen
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

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

    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from BCAnnotGen to any2stringadd[BCAnnotGen] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (BCAnnotGen, B)

    Implicit information
    This member is added by an implicit conversion from BCAnnotGen to ArrowAssoc[BCAnnotGen] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. final def asmMethodType(msym: Global.Symbol): BTypesFromSymbols.MethodBType

    Definition Classes
    BCInnerClassGen
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def debugLevel: Int

    Definition Classes
    BCInnerClassGen
  10. final def descriptor(sym: Global.Symbol): String

    The jvm descriptor for a symbol.

    The jvm descriptor for a symbol. If sym represents a nested class, its ClassBType is added to the innerClassBufferASM.

    Definition Classes
    BCInnerClassGen
  11. final def descriptor(t: Global.Type): String

    The jvm descriptor of a type.

    The jvm descriptor of a type. If t references a nested class, its ClassBType is added to the innerClassBufferASM.

    Definition Classes
    BCInnerClassGen
  12. def emitAnnotations(fw: FieldVisitor, annotations: List[Global.AnnotationInfo]): Unit

  13. def emitAnnotations(mw: MethodVisitor, annotations: List[Global.AnnotationInfo]): Unit

  14. def emitAnnotations(cw: ClassVisitor, annotations: List[Global.AnnotationInfo]): Unit

  15. def emitArgument(av: AnnotationVisitor, name: String, arg: Global.ClassfileAnnotArg): Unit

  16. def emitAssocs(av: AnnotationVisitor, assocs: List[(Global.Name, Global.ClassfileAnnotArg)]): Unit

  17. final val emitLines: Boolean

    Definition Classes
    BCInnerClassGen
  18. def emitParamAnnotations(jmethod: MethodVisitor, pannotss: List[List[Global.AnnotationInfo]]): Unit

  19. final val emitSource: Boolean

    Definition Classes
    BCInnerClassGen
  20. final val emitVars: Boolean

    Definition Classes
    BCInnerClassGen
  21. def ensuring(cond: (BCAnnotGen) ⇒ Boolean, msg: ⇒ Any): BCAnnotGen

    Implicit information
    This member is added by an implicit conversion from BCAnnotGen to Ensuring[BCAnnotGen] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  22. def ensuring(cond: (BCAnnotGen) ⇒ Boolean): BCAnnotGen

    Implicit information
    This member is added by an implicit conversion from BCAnnotGen to Ensuring[BCAnnotGen] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  23. def ensuring(cond: Boolean, msg: ⇒ Any): BCAnnotGen

    Implicit information
    This member is added by an implicit conversion from BCAnnotGen to Ensuring[BCAnnotGen] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  24. def ensuring(cond: Boolean): BCAnnotGen

    Implicit information
    This member is added by an implicit conversion from BCAnnotGen to Ensuring[BCAnnotGen] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  25. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  28. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from BCAnnotGen to StringFormat[BCAnnotGen] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  29. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  30. final def getClassBTypeAndRegisterInnerClass(sym: Global.Symbol): BTypesFromSymbols.ClassBType

    The ClassBType for a class symbol.

    The ClassBType for a class symbol. If the class is nested, the ClassBType is added to the innerClassBufferASM.

    The class symbol scala.Nothing is mapped to the class scala.runtime.Nothing$. Similarly, scala.Null is mapped to scala.runtime.Null$. This is because there exist no class files for the Nothing / Null. If used for example as a parameter type, we use the runtime classes in the classfile method signature.

    Note that the referenced class symbol may be an implementation class. For example when compiling a mixed-in method that forwards to the static method in the implementation class, the class descriptor of the receiver (the implementation class) is obtained by creating the ClassBType.

    Definition Classes
    BCInnerClassGen
  31. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  32. final val innerClassBufferASM: Set[BTypesFromSymbols.ClassBType]

    Definition Classes
    BCInnerClassGen
  33. final def internalName(sym: Global.Symbol): String

    The class internal name for a given class symbol.

    The class internal name for a given class symbol. If the symbol describes a nested class, the ClassBType is added to the innerClassBufferASM.

    Definition Classes
    BCInnerClassGen
  34. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  35. final def ne(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    AnyRef
  39. def toString(): String

    Definition Classes
    AnyRef → Any
  40. final def toTypeKind(t: Global.Type): BTypesFromSymbols.BType

    This method returns the BType for a type reference, for example a parameter type.

    This method returns the BType for a type reference, for example a parameter type.

    If the result is a ClassBType for a nested class, it is added to the innerClassBufferASM.

    If t references a class, toTypeKind ensures that the class is not an implementation class. See also comment on getClassBTypeAndRegisterInnerClass, which is invoked for implementation classes.

    Definition Classes
    BCInnerClassGen
  41. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. def [B](y: B): (BCAnnotGen, B)

    Implicit information
    This member is added by an implicit conversion from BCAnnotGen to ArrowAssoc[BCAnnotGen] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from BCInnerClassGen

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from BCAnnotGen to any2stringadd[BCAnnotGen]

Inherited by implicit conversion StringFormat from BCAnnotGen to StringFormat[BCAnnotGen]

Inherited by implicit conversion Ensuring from BCAnnotGen to Ensuring[BCAnnotGen]

Inherited by implicit conversion ArrowAssoc from BCAnnotGen to ArrowAssoc[BCAnnotGen]

Ungrouped