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. defvalue(BytecodeDefaultValue defvalue)
Add default value.BytecodeMethod
BytecodeMethod. entry(BytecodeEntry entry)
Add some bytecode entry.BytecodeMethod
BytecodeMethod. label(String label)
Add label.BytecodeMethod
BytecodeMethod. trycatch(BytecodeEntry entry)
Add try-catch block.BytecodeMethod
BytecodeMethod. withoutMaxs()
Similar method without maxs.Methods in org.eolang.jeo.representation.bytecode that return types with arguments of type BytecodeMethod Modifier and Type Method Description List<BytecodeMethod>
BytecodeClass. methods()
Retrieve class methods.Constructors in org.eolang.jeo.representation.bytecode with parameters of type BytecodeMethod Constructor Description BytecodeMethodBuilder(BytecodeClass clazz, BytecodeMethod method)
Constructor.Constructor parameters in org.eolang.jeo.representation.bytecode with type arguments of type BytecodeMethod Constructor Description BytecodeClass(String name, List<BytecodeMethod> methods, List<BytecodeField> fields, BytecodeAnnotations annotations, BytecodeAttributes attributes, BytecodeClassProperties props)
Constructor.BytecodeClass(String name, List<BytecodeMethod> methods, BytecodeClassProperties properties)
Constructor. -
Uses of BytecodeMethod in org.eolang.jeo.representation.xmir
Methods in org.eolang.jeo.representation.xmir that return BytecodeMethod Modifier and Type Method Description BytecodeMethod
XmlMethod. bytecode()
Convert to bytecode.Methods in org.eolang.jeo.representation.xmir with parameters of type BytecodeMethod Modifier and Type Method Description void
XmlDefaultValue. writeTo(BytecodeMethod method)
Write to method.
-