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

janala.logger.inst.NEW 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 NEW extends Instruction {
  String type;
  public int cIdx;

  public NEW(int iid, int mid, String type, int cIdx) {
    super(iid, mid);
    this.type = type;
    this.cIdx = cIdx;
  }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy