Class InstrumentationResult
java.lang.Object
com.offbynull.coroutines.instrumenter.InstrumentationResult
Instrumentation results.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final org.apache.commons.collections4.map.UnmodifiableMap
<String, byte[]> private final byte[]
-
Constructor Summary
ConstructorsConstructorDescriptionInstrumentationResult
(byte[] instrumentedClass) InstrumentationResult
(byte[] instrumentedClass, Map<String, byte[]> extraFiles) -
Method Summary
Modifier and TypeMethodDescriptionorg.apache.commons.collections4.map.UnmodifiableMap
<String, byte[]> Get extra files to include along with the instrumented class.byte[]
Get instrumented class bytecode.
-
Field Details
-
instrumentedClass
private final byte[] instrumentedClass -
extraFiles
-
-
Constructor Details
-
InstrumentationResult
InstrumentationResult(byte[] instrumentedClass) -
InstrumentationResult
-
-
Method Details
-
getInstrumentedClass
public byte[] getInstrumentedClass()Get instrumented class bytecode.- Returns:
- instrumented class bytecode
-
getExtraFiles
Get extra files to include along with the instrumented class.- Returns:
- extra files to include along with the instrumented class
-