| Constructor and Description |
|---|
Builder(Identifier funcName)
Construct a new
Function.Builder for a function with the given Identifier as it's name. |
| Modifier and Type | Method and Description |
|---|---|
Function.Builder |
addParam(Expression arg)
Add the given
Expression as an argument to the function. |
Function |
build() |
public Builder(Identifier funcName)
Function.Builder for a function with the given Identifier as it's name.funcName - The name of this function.public Function.Builder addParam(Expression arg)
Expression as an argument to the function.arg - The Expression to add as an argument.Function.Builder.