![JAR search and dependency download from the Maven repository](/logo.png)
org.snapscript.core.Context Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap-all Show documentation
Show all versions of snap-all Show documentation
Dynamic scripting for the JVM
package org.snapscript.core;
import org.snapscript.core.bind.FunctionBinder;
import org.snapscript.core.bridge.BridgeProvider;
import org.snapscript.core.convert.ConstraintMatcher;
import org.snapscript.core.convert.ProxyWrapper;
import org.snapscript.core.error.ErrorHandler;
import org.snapscript.core.link.PackageLinker;
import org.snapscript.core.stack.ThreadStack;
import org.snapscript.core.trace.TraceInterceptor;
public interface Context extends Any {
ThreadStack getStack();
ErrorHandler getHandler();
TypeExtractor getExtractor();
ResourceManager getManager();
ModuleRegistry getRegistry();
ConstraintMatcher getMatcher();
ProgramValidator getValidator();
TraceInterceptor getInterceptor();
ExpressionEvaluator getEvaluator();
FunctionBinder getBinder();
BridgeProvider getProvider();
PackageLinker getLinker();
ProxyWrapper getWrapper();
TypeLoader getLoader();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy