src.org.python.compiler.CompilationContext Maven / Gradle / Ivy
package org.python.compiler;
import org.python.antlr.PythonTree;
public interface CompilationContext {
public Future getFutures();
public void error(String msg,boolean err,PythonTree node)
throws Exception;
public String getFilename();
public ScopeInfo getScopeInfo(PythonTree node);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy