Uses of Class
org.eolang.jeo.representation.bytecode.BytecodeLabel
-
Packages that use BytecodeLabel Package Description org.eolang.jeo.representation.asm Contains classes for working with the ASM library.org.eolang.jeo.representation.bytecode Contains classes for generating bytecode in the form of Java classes.org.eolang.jeo.representation.directives Package for generating XMIR by using ASM library.org.eolang.jeo.representation.xmir Package for reading XMIR files and converting them into bytecode. -
-
Uses of BytecodeLabel in org.eolang.jeo.representation.asm
Methods in org.eolang.jeo.representation.asm with parameters of type BytecodeLabel Modifier and Type Method Description org.objectweb.asm.Label
AsmLabels. label(BytecodeLabel label)
Get label by UID. -
Uses of BytecodeLabel in org.eolang.jeo.representation.bytecode
Methods in org.eolang.jeo.representation.bytecode that return types with arguments of type BytecodeLabel Modifier and Type Method Description List<BytecodeLabel>
BytecodeEntry. jumps()
Jump to a label.List<BytecodeLabel>
BytecodeFrame. jumps()
List<BytecodeLabel>
BytecodeInstruction. jumps()
Jump to a label.List<BytecodeLabel>
BytecodeLabel. jumps()
List<BytecodeLabel>
BytecodeLine. jumps()
List<BytecodeLabel>
BytecodeTryCatchBlock. jumps()
Constructors in org.eolang.jeo.representation.bytecode with parameters of type BytecodeLabel Constructor Description BytecodeTryCatchBlock(BytecodeLabel startlabel, BytecodeLabel endlabel, BytecodeLabel handlerlabel, String exception)
Constructor.LocalVariable(int index, String name, String descriptor, String signature, BytecodeLabel start, BytecodeLabel end)
Constructor. -
Uses of BytecodeLabel in org.eolang.jeo.representation.directives
Constructors in org.eolang.jeo.representation.directives with parameters of type BytecodeLabel Constructor Description DirectivesTryCatch(BytecodeLabel start, BytecodeLabel end, BytecodeLabel handler, String type)
Constructor. -
Uses of BytecodeLabel in org.eolang.jeo.representation.xmir
Methods in org.eolang.jeo.representation.xmir that return BytecodeLabel Modifier and Type Method Description BytecodeLabel
XmlLabel. bytecode()
Converts label to bytecode.
-