1 package polyglot.ext.coffer.ast; 2 3 import polyglot.ast.*; 4 import polyglot.ext.coffer.types.*; 5 6 9 public interface ThrowConstraintNode extends Node { 10 TypeNode type(); 11 KeySetNode keys(); 12 ThrowConstraint constraint(); 13 14 ThrowConstraintNode type(TypeNode type); 15 ThrowConstraintNode keys(KeySetNode keys); 16 ThrowConstraintNode constraint(ThrowConstraint constraint); 17 } 18 | Popular Tags |