Uses of Class
org.eolang.jeo.representation.bytecode.BytecodeLabel
-
Packages that use BytecodeLabel Package Description org.eolang.jeo.representation.asm ASM library integration for bytecode manipulation.org.eolang.jeo.representation.bytecode Contains classes for generating bytecode in the form of Java classes.org.eolang.jeo.representation.directives XMIR generation through Xembly directives.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.LabelAsmLabels. 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 BytecodeLine(int number, BytecodeLabel label)Constructor.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(int index, Format format, 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 BytecodeLabelXmlLabel. bytecode()Converts label to bytecode.
-