1 2 package org.python.compiler;3 4 import org.python.parser.SimpleNode;5 6 public interface CompilationContext {7 8 public Future getFutures();9 public void error(String msg,boolean err,SimpleNode node)10 throws Exception ;11 12 public String getFilename();13 14 15 public ScopeInfo getScopeInfo(SimpleNode node);16 }17