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.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 TypeMethodDescriptionvoid
XmlBytecodeEntry.writeTo
(BytecodeMethod method) Write instruction to the bytecode method.void
XmlDefaultValue.writeTo
(BytecodeMethod method) Write to method.void
XmlFrame.writeTo
(BytecodeMethod method) void
XmlInstruction.writeTo
(BytecodeMethod method) void
XmlLabel.writeTo
(BytecodeMethod method) void
XmlTryCatchEntry.writeTo
(BytecodeMethod method)