151152153154155156157158159160161162163
void resolve(Object rover) throws Exception { if (rover == null) return; if (rover instanceof struct) { struct struct = (struct) rover; for (Field f : struct.fields()) { Object o = f.get(struct); if (o == null) continue;