Fix bug in Tast_mapper: bad recursion in module_binding (found by Corentin De Souza).

master
alainfrisch 2015-11-17 13:09:06 +01:00
parent 9b1a371291
commit 1caf9364e3
1 changed files with 1 additions and 1 deletions

View File

@ -461,7 +461,7 @@ let module_expr sub x =
{x with mod_desc; mod_env}
let module_binding sub x =
let mb_expr = module_expr sub x.mb_expr in
let mb_expr = sub.module_expr sub x.mb_expr in
{x with mb_expr}
let class_expr sub x =