Uses of Class
org.eolang.jeo.representation.bytecode.BytecodeMethod
-
Packages that use BytecodeMethod Package Description org.eolang.jeo.representation.bytecode Contains classes for generating bytecode in the form of Java classes.org.eolang.jeo.representation.xmir Package for reading XMIR files and converting them into bytecode. -
-
Uses of BytecodeMethod in org.eolang.jeo.representation.bytecode
Methods in org.eolang.jeo.representation.bytecode that return BytecodeMethod Modifier and Type Method Description BytecodeMethod
BytecodeMethod. entry(BytecodeEntry entry)
Add some bytecode entry.BytecodeMethod
BytecodeMethod. label(String label)
Add label.BytecodeMethod
BytecodeMethod. label(org.objectweb.asm.Label label)
Add label.BytecodeMethod
BytecodeMethod. opcode(int opcode, Object... args)
Add instruction.BytecodeMethod
BytecodeMethod. trycatch(BytecodeEntry entry)
Add try-catch block.BytecodeMethod
BytecodeClass. withConstructor(int... modifiers)
Add constructor.BytecodeMethod
BytecodeClass. withConstructor(String descriptor, int... modifiers)
Add constructor.BytecodeMethod
BytecodeClass. withMethod(String mname, String descriptor, int... modifiers)
Add method.BytecodeMethod
BytecodeClass. withMethod(BytecodeMethodProperties properties)
Add method.Constructor parameters in org.eolang.jeo.representation.bytecode with type arguments of type BytecodeMethod Constructor Description BytecodeClass(String name, CustomClassWriter writer, Collection<BytecodeMethod> methods, BytecodeClassProperties properties)
Constructor. -
Uses of BytecodeMethod in org.eolang.jeo.representation.xmir
Methods in org.eolang.jeo.representation.xmir with parameters of type BytecodeMethod Modifier and Type Method Description void
XmlBytecodeEntry. writeTo(BytecodeMethod method)
Write instruction to the bytecode method.void
XmlInstruction. writeTo(BytecodeMethod method)
void
XmlLabel. writeTo(BytecodeMethod method)
void
XmlTryCatchEntry. writeTo(BytecodeMethod method)
-