static A findBackRef(Concept c, Class type) { for (Concept.Ref r : c.backRefs) if (instanceOf(r.concept(), type)) ret (A) r.concept(); null; } static A findBackRef(Class type, Concept c) { ret findBackRef(c, type); }