Uses of Class
org.eolang.jeo.representation.bytecode.BytecodeClass
-
Packages that use BytecodeClass Package Description org.eolang.jeo.representation.asm Contains classes for working with the ASM library.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 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
BytecodeProgram. 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 BytecodeProgram
BytecodeProgram. 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.BytecodeProgram(String pckg, BytecodeClass... classes)
Constructor.BytecodeProgram(BytecodeClass... classes)
Constructor.Constructor parameters in org.eolang.jeo.representation.bytecode with type arguments of type BytecodeClass Constructor Description BytecodeProgram(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.
-