1 package polyglot.ext.param.types;2 3 import polyglot.types.*;4 import java.util.List ;5 6 /**7 * A parameterized type instantiated on actual arguments.8 */9 public interface InstType extends Type10 {11 PClass instantiatedFrom();12 List actuals();13 }14