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

com.github.anilople.javajvm.instructions.comparisons.ifinstructions.IF_ICMPGT Maven / Gradle / Ivy

The newest version!
package com.github.anilople.javajvm.instructions.comparisons.ifinstructions;

import com.github.anilople.javajvm.instructions.Instruction;
import com.github.anilople.javajvm.runtimedataarea.Frame;

public class IF_ICMPGT extends IF implements Instruction {

    @Override
    public void execute(Frame frame) {
        this.execute(frame, (value1, value2) -> value1 > value2);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy