1 package polyglot.ast; 2 3 import polyglot.types.FieldInstance; 4 5 11 public interface Field extends Variable 12 { 13 17 FieldInstance fieldInstance(); 18 19 20 Field fieldInstance(FieldInstance fi); 21 22 26 Receiver target(); 27 28 29 Field target(Receiver target); 30 31 36 boolean isTargetImplicit(); 37 38 41 Field targetImplicit(boolean implicit); 42 43 44 String name(); 45 46 Field name(String name); 47 } 48 | Popular Tags |