org.hyperscala.javascript

BytecodeConverter

Related Doc: package javascript

class BytecodeConverter extends MethodVisitor

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

Instance Constructors

  1. new BytecodeConverter(methodNode: MethodNode, includeLineNumbers: Boolean, debug: Boolean = false)

Value Members

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

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

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

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

    Definition Classes
    Any
  5. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. var depth: Int

  7. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  17. def toString(): String

    Definition Classes
    BytecodeConverter → AnyRef → Any
  18. def visitAnnotation(desc: String, visible: Boolean): AnnotationVisitor

    Definition Classes
    BytecodeConverter → MethodVisitor
  19. def visitAnnotationDefault(): AnnotationVisitor

    Definition Classes
    BytecodeConverter → MethodVisitor
  20. def visitAttribute(attr: Attribute): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  21. def visitCode(): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  22. def visitEnd(): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  23. def visitFieldInsn(opcode: Int, owner: String, name: String, desc: String): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  24. def visitFrame(type: Int, nLocal: Int, local: Array[AnyRef], nStack: Int, stack: Array[AnyRef]): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  25. def visitIincInsn(var: Int, increment: Int): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  26. def visitInsn(opcode: Int): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  27. def visitInsnAnnotation(arg0: Int, arg1: TypePath, arg2: String, arg3: Boolean): AnnotationVisitor

    Definition Classes
    MethodVisitor
  28. def visitIntInsn(opcode: Int, operand: Int): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  29. def visitInvokeDynamicInsn(name: String, desc: String, bsm: Handle, bsmArgs: AnyRef*): Unit

  30. def visitInvokeDynamicInsn(arg0: String, arg1: String, arg2: Handle, arg3: <repeated...>[AnyRef]): Unit

    Definition Classes
    MethodVisitor
  31. def visitJumpInsn(opcode: Int, label: Label): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  32. def visitLabel(label: Label): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  33. def visitLdcInsn(cst: Any): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  34. def visitLineNumber(line: Int, start: Label): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  35. def visitLocalVariable(name: String, desc: String, signature: String, start: Label, end: Label, index: Int): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  36. def visitLocalVariableAnnotation(arg0: Int, arg1: TypePath, arg2: Array[Label], arg3: Array[Label], arg4: Array[Int], arg5: String, arg6: Boolean): AnnotationVisitor

    Definition Classes
    MethodVisitor
  37. def visitLookupSwitchInsn(dflt: Label, keys: Array[Int], labels: Array[Label]): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  38. def visitMaxs(maxStack: Int, maxLocals: Int): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  39. def visitMethodInsn(opcode: Int, owner: String, name: String, desc: String): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  40. def visitMethodInsn(arg0: Int, arg1: String, arg2: String, arg3: String, arg4: Boolean): Unit

    Definition Classes
    MethodVisitor
  41. def visitMultiANewArrayInsn(desc: String, dims: Int): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  42. def visitParameter(arg0: String, arg1: Int): Unit

    Definition Classes
    MethodVisitor
  43. def visitParameterAnnotation(parameter: Int, desc: String, visible: Boolean): AnnotationVisitor

    Definition Classes
    BytecodeConverter → MethodVisitor
  44. def visitTableSwitchInsn(min: Int, max: Int, dflt: Label, labels: Label*): Unit

  45. def visitTableSwitchInsn(arg0: Int, arg1: Int, arg2: Label, arg3: <repeated...>[Label]): Unit

    Definition Classes
    MethodVisitor
  46. def visitTryCatchAnnotation(arg0: Int, arg1: TypePath, arg2: String, arg3: Boolean): AnnotationVisitor

    Definition Classes
    MethodVisitor
  47. def visitTryCatchBlock(start: Label, end: Label, handler: Label, type: String): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  48. def visitTypeAnnotation(arg0: Int, arg1: TypePath, arg2: String, arg3: Boolean): AnnotationVisitor

    Definition Classes
    MethodVisitor
  49. def visitTypeInsn(opcode: Int, type: String): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  50. def visitVarInsn(opcode: Int, varIndex: Int): Unit

    Definition Classes
    BytecodeConverter → MethodVisitor
  51. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  54. def writeLine(s: String): StringBuilder

  55. def writeReturn(includeVariable: Boolean = false): StringBuilder

  56. def writeVariable(): StringBuilder

Inherited from MethodVisitor

Inherited from AnyRef

Inherited from Any

Ungrouped