org.snapscript.tree.define.StaticFunctionBuilder 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.define;
import org.snapscript.core.Scope;
import org.snapscript.core.Statement;
import org.snapscript.core.Type;
import org.snapscript.core.TypeFactory;
import org.snapscript.core.function.Function;
import org.snapscript.core.function.Invocation;
import org.snapscript.core.function.InvocationFunction;
import org.snapscript.core.function.Signature;
import org.snapscript.tree.CompoundStatement;
public class StaticFunctionBuilder implements MemberFunctionBuilder {
private final Signature signature;
private final Statement body;
private final Type constraint;
private final String name;
private final int modifiers;
public StaticFunctionBuilder(Signature signature, Statement body, Type constraint, String name, int modifiers) {
this.constraint = constraint;
this.signature = signature;
this.modifiers = modifiers;
this.body = body;
this.name = name;
}
@Override
public Function create(TypeFactory factory, Scope scope, Type type){
Statement initialize = new StaticBody(factory, type);
Statement statement = new CompoundStatement(initialize, body);
Invocation invocation = new StaticInvocation(signature, statement, scope, constraint);
return new InvocationFunction(signature, invocation, type, constraint, name, modifiers);
}
}