Uses of Class
org.eolang.jeo.representation.bytecode.BytecodeClass
-
Packages that use BytecodeClass Package Description org.eolang.jeo.representation.asm ASM library integration for bytecode manipulation.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 BytecodeClass in org.eolang.jeo.representation.asm
Methods in org.eolang.jeo.representation.asm that return BytecodeClass Modifier and Type Method Description BytecodeClass
AsmClass. bytecode()
Convert ASM class to domain bytecode class. -
Uses of BytecodeClass in org.eolang.jeo.representation.bytecode
Methods in org.eolang.jeo.representation.bytecode that return BytecodeClass Modifier and Type Method Description BytecodeClass
BytecodeClass. helloWorldMethod()
Hello world bytecode.BytecodeClass
BytecodeObject. top()
Get top class.BytecodeClass
BytecodeMethodBuilder. up()
Return to the original class.BytecodeClass
BytecodeClass. withField(String fname)
Add field.BytecodeClass
BytecodeClass. withoutMethods()
Without methods.Methods in org.eolang.jeo.representation.bytecode with parameters of type BytecodeClass Modifier and Type Method Description BytecodeObject
BytecodeObject. replaceTopClass(BytecodeClass clazz)
Copy program with replaced top class.Constructors in org.eolang.jeo.representation.bytecode with parameters of type BytecodeClass Constructor Description BytecodeMethodBuilder(BytecodeClass clazz, BytecodeMethod method)
Constructor.BytecodeObject(String pckg, BytecodeClass... classes)
Constructor.BytecodeObject(BytecodeClass... classes)
Constructor.Constructor parameters in org.eolang.jeo.representation.bytecode with type arguments of type BytecodeClass Constructor Description BytecodeObject(String pckg, List<BytecodeClass> classes)
Constructor. -
Uses of BytecodeClass in org.eolang.jeo.representation.xmir
Methods in org.eolang.jeo.representation.xmir that return BytecodeClass Modifier and Type Method Description BytecodeClass
XmlClass. bytecode()
Convert to bytecode.
-