@Override
 public Void visitClass(DartClass node) {
   if (node.isInterface()) {
     recordRelationship(node, SyntheticLocation.ALL_INTERFACES);
   } else {
     recordRelationship(node, SyntheticLocation.ALL_CLASSES);
   }
   return super.visitClass(node);
 }