All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.snapscript.core.function.InvocationBuilder Maven / Gradle / Ivy

package org.snapscript.core.function;

import org.snapscript.core.scope.Scope;

public interface InvocationBuilder {
   void define(Scope scope) throws Exception;
   void compile(Scope scope) throws Exception;
   Invocation create(Scope scope) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy