Stefan pushed to branch master at Stefan / Typer
Commits: b41d99a9 by Stefan Monnier at 2017-08-06T09:20:07-04:00 * src/opslexp.ml (check'): Fix handling of erasable datatype args.
- - - - -
1 changed file:
- src/opslexp.ml
Changes:
===================================== src/opslexp.ml ===================================== --- a/src/opslexp.ml +++ b/src/opslexp.ml @@ -452,10 +452,7 @@ let rec check' erased ctx e = "Not a proper type"; mkSort (l, StypeOmega))) | Lambda (ak, ((l,_) as v), t, e) - -> ((match lexp_whnf (check_type DB.set_empty ctx t) ctx with - | Sort _ -> () - | _ -> (U.msg_error "TC" (lexp_location t) - "Formal arg type is not a type!"; ())); + -> (let _k = check_type DB.set_empty ctx t in mkArrow (ak, Some v, t, l, check (dbset_push ak erased) (DB.lctx_extend ctx (Some v) Variable t) @@ -480,42 +477,46 @@ let rec check' erased ctx e = ft)) ft args | Inductive (l, label, args, cases) - -> let rec arg_loop args ctx = + -> let rec arg_loop ctx erased args = match args with | [] -> let level = SMap.fold (fun _ case level -> - let level, _ = + let level, _, _ = List.fold_left - (fun (level, ctx) (ak, v, t) -> + (fun (level, ctx, erased) (ak, v, t) -> (* FIXME: DB.set_empty seems wrong! *) - (match lexp_whnf (check_type DB.set_empty ctx t) - ctx with - | Sort (_, Stype _) - when ak == P.Aerasable && impredicative_erase - -> level - | Sort (_, Stype level') - (* FIXME: scoping of level vars! *) - -> mkSLlub ctx level level' - | tt -> U.msg_error "TC" (lexp_location t) - ("Field type " - ^ lexp_string t - ^ " is not a Type! (" - ^ lexp_string tt ^")"); - DB.print_lexp_ctx ctx; - (* U.internal_error "Oops"; *) - level), - DB.lctx_extend ctx v Variable t) - (level, ctx) + ((match lexp_whnf (check_type erased ctx t) + ctx with + | Sort (_, Stype _) + when ak == P.Aerasable && impredicative_erase + -> level + | Sort (_, Stype level') + (* FIXME: scoping of level vars! *) + -> mkSLlub ctx level level' + | tt -> U.msg_error "TC" (lexp_location t) + ("Field type " + ^ lexp_string t + ^ " is not a Type! (" + ^ lexp_string tt ^")"); + DB.print_lexp_ctx ctx; + (* U.internal_error "Oops"; *) + level), + DB.lctx_extend ctx v Variable t, + DB.set_sink 1 erased)) + (level, ctx, erased) case in level) cases (mkSortLevel SLz) in mkSort (l, Stype level) | (ak, v, t)::args - -> mkArrow (ak, Some v, t, lexp_location t, - arg_loop args (DB.lctx_extend ctx (Some v) Variable t)) in - let tct = arg_loop args ctx in + -> let _k = check_type DB.set_empty ctx t in + mkArrow (ak, Some v, t, lexp_location t, + arg_loop (DB.lctx_extend ctx (Some v) Variable t) + (dbset_push ak erased) + args) in + let tct = arg_loop ctx erased args in tct | Case (l, e, ret, branches, default) (* FIXME: Check that the return type isn't TypeLevel. *)
View it on GitLab: https://gitlab.com/monnier/typer/commit/b41d99a9ee13d0f3c3a7fab6a81a9fbc5573...
--- View it on GitLab: https://gitlab.com/monnier/typer/commit/b41d99a9ee13d0f3c3a7fab6a81a9fbc5573... You're receiving this email because of your account on gitlab.com.
Afficher les réponses par date