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

serp.bytecode.MonitorInstruction Maven / Gradle / Ivy

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

/**
 * A synchronization instruction.
 *
 * @author Abe White
 */
public abstract class MonitorInstruction extends Instruction {
    MonitorInstruction(Code owner, int opcode) {
        super(owner, opcode);
    }

    public int getStackChange() {
        return -1;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy