From: Siraaj Khandkar Date: Thu, 13 Sep 2018 23:40:45 +0000 (-0400) Subject: WIP type-checking -- check record expressions X-Git-Url: https://git.xandkar.net/?p=tiger.ml.git;a=commitdiff_plain;h=0ed7a07cf496065c3ff0d0f9325ae8c516b00c1b WIP type-checking -- check record expressions --- diff --git a/compiler/src/lib/tiger/tiger_semant.ml b/compiler/src/lib/tiger/tiger_semant.ml index 40407ef..ca4b489 100644 --- a/compiler/src/lib/tiger/tiger_semant.ml +++ b/compiler/src/lib/tiger/tiger_semant.ml @@ -79,8 +79,25 @@ end = struct ) | A.OpExp {oper; left; right; pos} -> trop oper ~left ~right ~pos - | A.RecordExp {fields=_; typ=_; pos=_} -> - unimplemented () + | A.RecordExp {fields=field_exps; typ; pos} -> + let ty = env_get_typ ~sym:typ ~env ~pos in + Type.if_record + ty + ~f:(fun field_tys -> + List.iter field_exps ~f:(fun (field, exp, pos) -> + (match List.assoc_opt field field_tys with + | Some field_ty -> + check_same {exp=(); ty=field_ty} (trexp exp) ~pos + | None -> + E.raise + (E.No_such_field_in_record {field; record=ty; pos}) + ) + ) + ) + ~otherwise:(fun () -> + E.raise (E.Wrong_type_used_as_record {ty_id=typ; ty; pos}) + ); + return ty | A.SeqExp exps -> (* Ignoring value because we only care if a type-checking exception * is raised in one of trexp calls: *)