io.virtdata.ast.Expression Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-realer Show documentation
Show all versions of virtdata-lib-realer Show documentation
With inspiration from other libraries
package io.virtdata.ast;
public class Expression {
private Assignment assignment;
private FunctionCall call;
public Expression() {}
public Expression(Assignment assignment, FunctionCall call) {
this.assignment = assignment;
this.call = call;
}
public Assignment getAssignment() {
return assignment;
}
public void setAssignment(Assignment assignment) {
this.assignment = assignment;
}
public FunctionCall getCall() {
return call;
}
public void setCall(FunctionCall call) {
this.call = call;
}
}