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. -
-
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. descriptor(String descriptor)
Set method descriptor.BytecodeMethod
BytecodeMethod. instruction(int opcode, Object... args)
Add instruction.BytecodeMethod
BytecodeClass. withMethod(String mname, int... modifiers)
Add method.BytecodeMethod
BytecodeClass. withMethod(String mname, String descriptor, int... modifiers)
Add method.Constructor parameters in org.eolang.jeo.representation.bytecode with type arguments of type BytecodeMethod Constructor Description BytecodeClass(String name, org.objectweb.asm.ClassWriter writer, Collection<BytecodeMethod> methods, BytecodeClassProperties properties)
Constructor.
-