1 package polyglot.ext.coffer.types;2 3 import polyglot.types.*;4 5 public interface CofferContext extends Context {6 void addKey(Key key);7 Key findKey(String name) throws SemanticException;8 }9