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

janala.logger.inst.IF_ACMPNE Maven / Gradle / Ivy

Go to download

JQF: Feedback-directed Quickcheck for Java - Instrumentation and event generation module

There is a newer version: 2.0
Show newest version
package janala.logger.inst;

public class IF_ACMPNE extends Instruction implements ConditionalBranch {
  int label;

  public IF_ACMPNE(int iid, int mid, int label) {
    super(iid, mid);
    this.label = label;
  }

  public void visit(IVisitor visitor) {
    visitor.visitIF_ACMPNE(this);
  }

  @Override
  public String toString() {
    return "IF_ACMPNE iid=" + iid + " mid=" + mid + " label=" + label;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy