astra.statement.ModuleCallAdaptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of astra-interpreter Show documentation
Show all versions of astra-interpreter Show documentation
Core interpreter artifact for the ASTRA Language
package astra.statement;
import astra.core.Intention;
import astra.formula.Predicate;
public interface ModuleCallAdaptor {
public boolean suppressNotification();
public boolean inline();
public boolean invoke(Intention context, Predicate atom);
}