method module_expr : module_expr -> module_expr =
function
| MeNil _x -> let _x = o#loc _x in MeNil _x
| MeId (_x, _x_i1) ->
let _x = o#loc _x in
let _x_i1 = o#ident _x_i1 in MeId (_x, _x_i1)
| MeApp (_x, _x_i1, _x_i2) ->
let _x = o#loc _x in
let _x_i1 = o#module_expr _x_i1 in
let _x_i2 = o#module_expr _x_i2
in MeApp (_x, _x_i1, _x_i2)
| MeFun (_x, _x_i1, _x_i2, _x_i3) ->
let _x = o#loc _x in
let _x_i1 = o#string _x_i1 in
let _x_i2 = o#module_type _x_i2 in
let _x_i3 = o#module_expr _x_i3
in MeFun (_x, _x_i1, _x_i2, _x_i3)
| MeStr (_x, _x_i1) ->
let _x = o#loc _x in
let _x_i1 = o#str_item _x_i1 in MeStr (_x, _x_i1)
| MeTyc (_x, _x_i1, _x_i2) ->
let _x = o#loc _x in
let _x_i1 = o#module_expr _x_i1 in
let _x_i2 = o#module_type _x_i2
in MeTyc (_x, _x_i1, _x_i2)
| MePkg (_x, _x_i1) ->
let _x = o#loc _x in
let _x_i1 = o#expr _x_i1 in MePkg (_x, _x_i1)
| MeAnt (_x, _x_i1) ->
let _x = o#loc _x in
let _x_i1 = o#string _x_i1 in MeAnt (_x, _x_i1)