![JAR search and dependency download from the Maven repository](/logo.png)
org.snapscript.tree.function.FunctionBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap Show documentation
Show all versions of snap Show documentation
Dynamic scripting for the JVM
package org.snapscript.tree.function;
import org.snapscript.core.Module;
import org.snapscript.core.Statement;
import org.snapscript.core.Type;
import org.snapscript.core.function.Function;
import org.snapscript.core.function.FunctionType;
import org.snapscript.core.function.Invocation;
import org.snapscript.core.function.InvocationBuilder;
import org.snapscript.core.function.InvocationFunction;
import org.snapscript.core.function.Signature;
import org.snapscript.core.function.FunctionHandle;
import org.snapscript.tree.StatementInvocationBuilder;
public class FunctionBuilder {
protected final Statement statement;
public FunctionBuilder(Statement statement) {
this.statement = statement;
}
public FunctionHandle create(Signature signature, Module module, Type constraint, String name) {
Type type = new FunctionType(signature, module, null);
InvocationBuilder builder = new StatementInvocationBuilder(signature, statement, statement, constraint);
Invocation invocation = new StatementInvocation(builder);
Function function = new InvocationFunction(signature, invocation, type, constraint, name, 0);
return new FunctionHandle(builder, function);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy