01: package org.python.compiler;
02:
03: import org.python.parser.SimpleNode;
04:
05: public interface CompilationContext {
06:
07: public Future getFutures();
08:
09: public void error(String msg, boolean err, SimpleNode node)
10: throws Exception;
11:
12: public String getFilename();
13:
14: public ScopeInfo getScopeInfo(SimpleNode node);
15: }
|