All Downloads are FREE. Search and download functionalities are using the official Maven repository.

serp.bytecode.CodeEntry Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package serp.bytecode;

/**
 * An entry in a code block.
 *
 * @author Abe White
 */
class CodeEntry {
    CodeEntry next = null;
    CodeEntry prev = null;
    int byteIndex = -1;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy