Home | History | Annotate | Download | only in cst

Lines Matching refs:nat

27     private final CstNat nat;
33 * @param nat {@code non-null;} the name-and-type
35 /*package*/ CstMemberRef(CstType definingClass, CstNat nat) {
40 if (nat == null) {
41 throw new NullPointerException("nat == null");
45 this.nat = nat;
57 nat.equals(otherRef.nat);
63 return (definingClass.hashCode() * 31) ^ nat.hashCode();
82 CstString thisName = nat.getName();
83 CstString otherName = otherMember.nat.getName();
102 return definingClass.toHuman() + '.' + nat.toHuman();
120 return nat;