sqlancer.common.ast.newast.NewTernaryNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlancer Show documentation
Show all versions of sqlancer Show documentation
SQLancer finds logic bugs in Database Management Systems through automatic testing
package sqlancer.common.ast.newast;
public class NewTernaryNode implements Node {
protected final Node left;
protected final Node middle;
protected final Node right;
private final String leftStr;
private final String rightStr;
public NewTernaryNode(Node left, Node middle, Node right, String leftStr, String rightStr) {
this.left = left;
this.middle = middle;
this.right = right;
this.leftStr = leftStr;
this.rightStr = rightStr;
}
public Node getLeft() {
return left;
}
public Node getMiddle() {
return middle;
}
public Node getRight() {
return right;
}
public String getLeftStr() {
return leftStr;
}
public String getRightStr() {
return rightStr;
}
}