1 package polyglot.ext.coffer.types; 2 3 import polyglot.ext.jl.types.*; 4 import polyglot.types.*; 5 import polyglot.visit.*; 6 import polyglot.util.*; 7 8 public class UnknownKey_c extends Key_c implements UnknownKey 9 { 10 public UnknownKey_c(TypeSystem ts, Position pos, String name) { 11 super(ts, pos, name); 12 } 13 14 public boolean isCanonical() { 15 return false; 16 } 17 } 18 | Popular Tags |