Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/ecScope.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2684,11 +2684,11 @@ end
let es = e_subst tip in
let xs = List.map (snd_map (ty_subst tip)) nt.ont_args in
let bd = EcFol.form_of_expr (es nt.ont_body) in
let fp = EcFol.f_lambda (List.map (snd_map EcFol.gtty) xs) bd in
List.iter (fun (id, ty) -> ps := Mid.add id ty !ps) xs;

match fp.f_node with
match bd.f_node with
| Fop (pf, _) -> (pf :: paths, pts)
| _ -> (paths, (ps, ue, fp) ::pts)
| _ -> (paths, (ps, ue, bd) ::pts)
end

| _ -> (p :: paths, pts) in
Expand Down
Loading