co.streamx.fluent.extree.expression.InvocableExpression Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ex-tree Show documentation
Show all versions of ex-tree Show documentation
Build AST from the bytecode
The newest version!
package co.streamx.fluent.extree.expression;
import java.util.List;
import lombok.Getter;
import lombok.NonNull;
/**
* Provides the base class from which the expression that represent invocable operations are derived.
*
*
*/
@Getter
public abstract class InvocableExpression extends Expression {
private final List parameters;
protected InvocableExpression(int expressionType, Class> resultType, @NonNull List params) {
super(expressionType, resultType);
this.parameters = params;
}
}