Uses of Class
org.eolang.jeo.representation.bytecode.BytecodeMethod
Packages that use BytecodeMethod
Package
Description
Contains classes for generating bytecode in the form of Java classes.
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 BytecodeMethodModifier and TypeMethodDescriptionBytecodeMethod.annotation(BytecodeAnnotation annotation) Add annotation.BytecodeMethod.defvalue(BytecodeDefaultValue defvalue) Add default value.BytecodeMethod.entry(BytecodeEntry entry) Add some bytecode entry.Add label.BytecodeMethod.label(org.objectweb.asm.Label label) Add label.Add instruction.BytecodeMethod.trycatch(BytecodeEntry entry) Add try-catch block.BytecodeClass.withConstructor(int... modifiers) Add constructor.BytecodeClass.withConstructor(String descriptor, int... modifiers) Add constructor.BytecodeClass.withMethod(String mname, String descriptor, int... modifiers) Add method.BytecodeClass.withMethod(BytecodeMethodProperties properties) Add method.BytecodeClass.withMethod(BytecodeMethodProperties properties, int stack, int locals) Add method.Constructor parameters in org.eolang.jeo.representation.bytecode with type arguments of type BytecodeMethodModifierConstructorDescriptionBytecodeClass(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 BytecodeMethodModifier and TypeMethodDescriptionvoidXmlBytecodeEntry.writeTo(BytecodeMethod method) Write instruction to the bytecode method.voidXmlDefaultValue.writeTo(BytecodeMethod method) Write to method.voidXmlFrame.writeTo(BytecodeMethod method) voidXmlInstruction.writeTo(BytecodeMethod method) voidXmlLabel.writeTo(BytecodeMethod method) voidXmlTryCatchEntry.writeTo(BytecodeMethod method)