public final class CodeGenerationResult extends java.lang.Object
Compiling a single Golo source file may result in several JVM classes to be produced.
A CodeGenerationResult
represents one such output.
Constructor and Description |
---|
CodeGenerationResult(byte[] bytecode,
PackageAndClass packageAndClass,
java.lang.String sourceFile)
Constructor for a code generation result.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getBinaryName() |
byte[] |
getBytecode() |
java.lang.String |
getOutputFilename() |
PackageAndClass |
getPackageAndClass() |
java.lang.String |
getSourceFilename() |
int |
size() |
java.lang.String |
toString() |
public CodeGenerationResult(byte[] bytecode, PackageAndClass packageAndClass, java.lang.String sourceFile)
bytecode
- the JVM bytecode as an array.packageAndClass
- the package and class descriptor for the bytecode.public byte[] getBytecode()
public PackageAndClass getPackageAndClass()
public java.lang.String getBinaryName()
public java.lang.String getOutputFilename()
public java.lang.String getSourceFilename()
public int size()
public java.lang.String toString()
toString
in class java.lang.Object