1 package polyglot.ext.coffer.ast;2 3 import polyglot.ast.*;4 import polyglot.types.*;5 import polyglot.visit.*;6 import polyglot.ext.jl.ast.*;7 import polyglot.ext.coffer.types.*;8 9 /**10 * A canonical key set AST node. This is just an AST node11 * veneer around a <code>KeySet</code> type object.12 */13 public interface CanonicalKeySetNode extends KeySetNode14 {15 public CanonicalKeySetNode keys(KeySet keys);16 }17