123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011(**************************************************************************)(* *)(* OCaml Migrate Parsetree *)(* *)(* Frédéric Bour *)(* Alain Frisch, LexiFi *)(* *)(* Copyright 2017 Institut National de Recherche en Informatique et *)(* en Automatique (INRIA). *)(* *)(* All rights reserved. This file is distributed under the terms of *)(* the GNU Lesser General Public License version 2.1, with the *)(* special exception on linking described in the file LICENSE. *)(* *)(**************************************************************************)moduleFrom=Ast_404moduleTo=Ast_405letnolocx={Location.txt=x;loc=Location.none}letreccopy_expression:From.Parsetree.expression->To.Parsetree.expression=fun{From.Parsetree.pexp_desc;From.Parsetree.pexp_loc;From.Parsetree.pexp_attributes;}->{To.Parsetree.pexp_desc=copy_expression_descpexp_desc;To.Parsetree.pexp_loc=copy_locationpexp_loc;To.Parsetree.pexp_attributes=copy_attributespexp_attributes;}andcopy_expression_desc:From.Parsetree.expression_desc->To.Parsetree.expression_desc=function|From.Parsetree.Pexp_identx0->To.Parsetree.Pexp_ident(copy_loccopy_longidentx0)|From.Parsetree.Pexp_constantx0->To.Parsetree.Pexp_constant(copy_constantx0)|From.Parsetree.Pexp_let(x0,x1,x2)->To.Parsetree.Pexp_let(copy_rec_flagx0,List.mapcopy_value_bindingx1,copy_expressionx2)|From.Parsetree.Pexp_functionx0->To.Parsetree.Pexp_function(List.mapcopy_casex0)|From.Parsetree.Pexp_fun(x0,x1,x2,x3)->To.Parsetree.Pexp_fun(copy_arg_labelx0,copy_optioncopy_expressionx1,copy_patternx2,copy_expressionx3)|From.Parsetree.Pexp_apply(x0,x1)->To.Parsetree.Pexp_apply(copy_expressionx0,List.map(funx->letx0,x1=xin(copy_arg_labelx0,copy_expressionx1))x1)|From.Parsetree.Pexp_match(x0,x1)->To.Parsetree.Pexp_match(copy_expressionx0,List.mapcopy_casex1)|From.Parsetree.Pexp_try(x0,x1)->To.Parsetree.Pexp_try(copy_expressionx0,List.mapcopy_casex1)|From.Parsetree.Pexp_tuplex0->To.Parsetree.Pexp_tuple(List.mapcopy_expressionx0)|From.Parsetree.Pexp_construct(x0,x1)->To.Parsetree.Pexp_construct(copy_loccopy_longidentx0,copy_optioncopy_expressionx1)|From.Parsetree.Pexp_variant(x0,x1)->To.Parsetree.Pexp_variant(copy_labelx0,copy_optioncopy_expressionx1)|From.Parsetree.Pexp_record(x0,x1)->To.Parsetree.Pexp_record(List.map(funx->letx0,x1=xin(copy_loccopy_longidentx0,copy_expressionx1))x0,copy_optioncopy_expressionx1)|From.Parsetree.Pexp_field(x0,x1)->To.Parsetree.Pexp_field(copy_expressionx0,copy_loccopy_longidentx1)|From.Parsetree.Pexp_setfield(x0,x1,x2)->To.Parsetree.Pexp_setfield(copy_expressionx0,copy_loccopy_longidentx1,copy_expressionx2)|From.Parsetree.Pexp_arrayx0->To.Parsetree.Pexp_array(List.mapcopy_expressionx0)|From.Parsetree.Pexp_ifthenelse(x0,x1,x2)->To.Parsetree.Pexp_ifthenelse(copy_expressionx0,copy_expressionx1,copy_optioncopy_expressionx2)|From.Parsetree.Pexp_sequence(x0,x1)->To.Parsetree.Pexp_sequence(copy_expressionx0,copy_expressionx1)|From.Parsetree.Pexp_while(x0,x1)->To.Parsetree.Pexp_while(copy_expressionx0,copy_expressionx1)|From.Parsetree.Pexp_for(x0,x1,x2,x3,x4)->To.Parsetree.Pexp_for(copy_patternx0,copy_expressionx1,copy_expressionx2,copy_direction_flagx3,copy_expressionx4)|From.Parsetree.Pexp_constraint(x0,x1)->To.Parsetree.Pexp_constraint(copy_expressionx0,copy_core_typex1)|From.Parsetree.Pexp_coerce(x0,x1,x2)->To.Parsetree.Pexp_coerce(copy_expressionx0,copy_optioncopy_core_typex1,copy_core_typex2)|From.Parsetree.Pexp_send(x0,x1)->To.Parsetree.Pexp_send(copy_expressionx0,nolocx1)|From.Parsetree.Pexp_newx0->To.Parsetree.Pexp_new(copy_loccopy_longidentx0)|From.Parsetree.Pexp_setinstvar(x0,x1)->To.Parsetree.Pexp_setinstvar(copy_loc(funx->x)x0,copy_expressionx1)|From.Parsetree.Pexp_overridex0->To.Parsetree.Pexp_override(List.map(funx->letx0,x1=xin(copy_loc(funx->x)x0,copy_expressionx1))x0)|From.Parsetree.Pexp_letmodule(x0,x1,x2)->To.Parsetree.Pexp_letmodule(copy_loc(funx->x)x0,copy_module_exprx1,copy_expressionx2)|From.Parsetree.Pexp_letexception(x0,x1)->To.Parsetree.Pexp_letexception(copy_extension_constructorx0,copy_expressionx1)|From.Parsetree.Pexp_assertx0->To.Parsetree.Pexp_assert(copy_expressionx0)|From.Parsetree.Pexp_lazyx0->To.Parsetree.Pexp_lazy(copy_expressionx0)|From.Parsetree.Pexp_poly(x0,x1)->To.Parsetree.Pexp_poly(copy_expressionx0,copy_optioncopy_core_typex1)|From.Parsetree.Pexp_objectx0->To.Parsetree.Pexp_object(copy_class_structurex0)|From.Parsetree.Pexp_newtype(x0,x1)->To.Parsetree.Pexp_newtype(nolocx0,copy_expressionx1)|From.Parsetree.Pexp_packx0->To.Parsetree.Pexp_pack(copy_module_exprx0)|From.Parsetree.Pexp_open(x0,x1,x2)->To.Parsetree.Pexp_open(copy_override_flagx0,copy_loccopy_longidentx1,copy_expressionx2)|From.Parsetree.Pexp_extensionx0->To.Parsetree.Pexp_extension(copy_extensionx0)|From.Parsetree.Pexp_unreachable->To.Parsetree.Pexp_unreachableandcopy_direction_flag:From.Asttypes.direction_flag->To.Asttypes.direction_flag=function|From.Asttypes.Upto->To.Asttypes.Upto|From.Asttypes.Downto->To.Asttypes.Downtoandcopy_case:From.Parsetree.case->To.Parsetree.case=fun{From.Parsetree.pc_lhs;From.Parsetree.pc_guard;From.Parsetree.pc_rhs}->{To.Parsetree.pc_lhs=copy_patternpc_lhs;To.Parsetree.pc_guard=copy_optioncopy_expressionpc_guard;To.Parsetree.pc_rhs=copy_expressionpc_rhs;}andcopy_value_binding:From.Parsetree.value_binding->To.Parsetree.value_binding=fun{From.Parsetree.pvb_pat;From.Parsetree.pvb_expr;From.Parsetree.pvb_attributes;From.Parsetree.pvb_loc;}->{To.Parsetree.pvb_pat=copy_patternpvb_pat;To.Parsetree.pvb_expr=copy_expressionpvb_expr;To.Parsetree.pvb_attributes=copy_attributespvb_attributes;To.Parsetree.pvb_loc=copy_locationpvb_loc;}andcopy_pattern:From.Parsetree.pattern->To.Parsetree.pattern=fun{From.Parsetree.ppat_desc;From.Parsetree.ppat_loc;From.Parsetree.ppat_attributes;}->{To.Parsetree.ppat_desc=copy_pattern_descppat_desc;To.Parsetree.ppat_loc=copy_locationppat_loc;To.Parsetree.ppat_attributes=copy_attributesppat_attributes;}andcopy_pattern_desc:From.Parsetree.pattern_desc->To.Parsetree.pattern_desc=function|From.Parsetree.Ppat_any->To.Parsetree.Ppat_any|From.Parsetree.Ppat_varx0->To.Parsetree.Ppat_var(copy_loc(funx->x)x0)|From.Parsetree.Ppat_alias(x0,x1)->To.Parsetree.Ppat_alias(copy_patternx0,copy_loc(funx->x)x1)|From.Parsetree.Ppat_constantx0->To.Parsetree.Ppat_constant(copy_constantx0)|From.Parsetree.Ppat_interval(x0,x1)->To.Parsetree.Ppat_interval(copy_constantx0,copy_constantx1)|From.Parsetree.Ppat_tuplex0->To.Parsetree.Ppat_tuple(List.mapcopy_patternx0)|From.Parsetree.Ppat_construct(x0,x1)->To.Parsetree.Ppat_construct(copy_loccopy_longidentx0,copy_optioncopy_patternx1)|From.Parsetree.Ppat_variant(x0,x1)->To.Parsetree.Ppat_variant(copy_labelx0,copy_optioncopy_patternx1)|From.Parsetree.Ppat_record(x0,x1)->To.Parsetree.Ppat_record(List.map(funx->letx0,x1=xin(copy_loccopy_longidentx0,copy_patternx1))x0,copy_closed_flagx1)|From.Parsetree.Ppat_arrayx0->To.Parsetree.Ppat_array(List.mapcopy_patternx0)|From.Parsetree.Ppat_or(x0,x1)->To.Parsetree.Ppat_or(copy_patternx0,copy_patternx1)|From.Parsetree.Ppat_constraint(x0,x1)->To.Parsetree.Ppat_constraint(copy_patternx0,copy_core_typex1)|From.Parsetree.Ppat_typex0->To.Parsetree.Ppat_type(copy_loccopy_longidentx0)|From.Parsetree.Ppat_lazyx0->To.Parsetree.Ppat_lazy(copy_patternx0)|From.Parsetree.Ppat_unpackx0->To.Parsetree.Ppat_unpack(copy_loc(funx->x)x0)|From.Parsetree.Ppat_exceptionx0->To.Parsetree.Ppat_exception(copy_patternx0)|From.Parsetree.Ppat_extensionx0->To.Parsetree.Ppat_extension(copy_extensionx0)|From.Parsetree.Ppat_open(x0,x1)->To.Parsetree.Ppat_open(copy_loccopy_longidentx0,copy_patternx1)andcopy_core_type:From.Parsetree.core_type->To.Parsetree.core_type=fun{From.Parsetree.ptyp_desc;From.Parsetree.ptyp_loc;From.Parsetree.ptyp_attributes;}->{To.Parsetree.ptyp_desc=copy_core_type_descptyp_desc;To.Parsetree.ptyp_loc=copy_locationptyp_loc;To.Parsetree.ptyp_attributes=copy_attributesptyp_attributes;}andcopy_core_type_desc:From.Parsetree.core_type_desc->To.Parsetree.core_type_desc=function|From.Parsetree.Ptyp_any->To.Parsetree.Ptyp_any|From.Parsetree.Ptyp_varx0->To.Parsetree.Ptyp_varx0|From.Parsetree.Ptyp_arrow(x0,x1,x2)->To.Parsetree.Ptyp_arrow(copy_arg_labelx0,copy_core_typex1,copy_core_typex2)|From.Parsetree.Ptyp_tuplex0->To.Parsetree.Ptyp_tuple(List.mapcopy_core_typex0)|From.Parsetree.Ptyp_constr(x0,x1)->To.Parsetree.Ptyp_constr(copy_loccopy_longidentx0,List.mapcopy_core_typex1)|From.Parsetree.Ptyp_object(x0,x1)->To.Parsetree.Ptyp_object(List.map(funx->letx0,x1,x2=xin(nolocx0,copy_attributesx1,copy_core_typex2))x0,copy_closed_flagx1)|From.Parsetree.Ptyp_class(x0,x1)->To.Parsetree.Ptyp_class(copy_loccopy_longidentx0,List.mapcopy_core_typex1)|From.Parsetree.Ptyp_alias(x0,x1)->To.Parsetree.Ptyp_alias(copy_core_typex0,x1)|From.Parsetree.Ptyp_variant(x0,x1,x2)->To.Parsetree.Ptyp_variant(List.mapcopy_row_fieldx0,copy_closed_flagx1,copy_option(funx->List.mapcopy_labelx)x2)|From.Parsetree.Ptyp_poly(x0,x1)->To.Parsetree.Ptyp_poly(List.map(funx->nolocx)x0,copy_core_typex1)|From.Parsetree.Ptyp_packagex0->To.Parsetree.Ptyp_package(copy_package_typex0)|From.Parsetree.Ptyp_extensionx0->To.Parsetree.Ptyp_extension(copy_extensionx0)andcopy_package_type:From.Parsetree.package_type->To.Parsetree.package_type=funx->letx0,x1=xin(copy_loccopy_longidentx0,List.map(funx->letx0,x1=xin(copy_loccopy_longidentx0,copy_core_typex1))x1)andcopy_row_field:From.Parsetree.row_field->To.Parsetree.row_field=function|From.Parsetree.Rtag(x0,x1,x2,x3)->To.Parsetree.Rtag(copy_labelx0,copy_attributesx1,copy_boolx2,List.mapcopy_core_typex3)|From.Parsetree.Rinheritx0->To.Parsetree.Rinherit(copy_core_typex0)andcopy_attributes:From.Parsetree.attributes->To.Parsetree.attributes=funx->List.mapcopy_attributexandcopy_attribute:From.Parsetree.attribute->To.Parsetree.attribute=funx->letx0,x1=xin(copy_loc(funx->x)x0,copy_payloadx1)andcopy_payload:From.Parsetree.payload->To.Parsetree.payload=function|From.Parsetree.PStrx0->To.Parsetree.PStr(copy_structurex0)|From.Parsetree.PSigx0->To.Parsetree.PSig(copy_signaturex0)|From.Parsetree.PTypx0->To.Parsetree.PTyp(copy_core_typex0)|From.Parsetree.PPat(x0,x1)->To.Parsetree.PPat(copy_patternx0,copy_optioncopy_expressionx1)andcopy_structure:From.Parsetree.structure->To.Parsetree.structure=funx->List.mapcopy_structure_itemxandcopy_structure_item:From.Parsetree.structure_item->To.Parsetree.structure_item=fun{From.Parsetree.pstr_desc;From.Parsetree.pstr_loc}->{To.Parsetree.pstr_desc=copy_structure_item_descpstr_desc;To.Parsetree.pstr_loc=copy_locationpstr_loc;}andcopy_structure_item_desc:From.Parsetree.structure_item_desc->To.Parsetree.structure_item_desc=function|From.Parsetree.Pstr_eval(x0,x1)->To.Parsetree.Pstr_eval(copy_expressionx0,copy_attributesx1)|From.Parsetree.Pstr_value(x0,x1)->To.Parsetree.Pstr_value(copy_rec_flagx0,List.mapcopy_value_bindingx1)|From.Parsetree.Pstr_primitivex0->To.Parsetree.Pstr_primitive(copy_value_descriptionx0)|From.Parsetree.Pstr_type(x0,x1)->To.Parsetree.Pstr_type(copy_rec_flagx0,List.mapcopy_type_declarationx1)|From.Parsetree.Pstr_typextx0->To.Parsetree.Pstr_typext(copy_type_extensionx0)|From.Parsetree.Pstr_exceptionx0->To.Parsetree.Pstr_exception(copy_extension_constructorx0)|From.Parsetree.Pstr_modulex0->To.Parsetree.Pstr_module(copy_module_bindingx0)|From.Parsetree.Pstr_recmodulex0->To.Parsetree.Pstr_recmodule(List.mapcopy_module_bindingx0)|From.Parsetree.Pstr_modtypex0->To.Parsetree.Pstr_modtype(copy_module_type_declarationx0)|From.Parsetree.Pstr_openx0->To.Parsetree.Pstr_open(copy_open_descriptionx0)|From.Parsetree.Pstr_classx0->To.Parsetree.Pstr_class(List.mapcopy_class_declarationx0)|From.Parsetree.Pstr_class_typex0->To.Parsetree.Pstr_class_type(List.mapcopy_class_type_declarationx0)|From.Parsetree.Pstr_includex0->To.Parsetree.Pstr_include(copy_include_declarationx0)|From.Parsetree.Pstr_attributex0->To.Parsetree.Pstr_attribute(copy_attributex0)|From.Parsetree.Pstr_extension(x0,x1)->To.Parsetree.Pstr_extension(copy_extensionx0,copy_attributesx1)andcopy_include_declaration:From.Parsetree.include_declaration->To.Parsetree.include_declaration=funx->copy_include_infoscopy_module_exprxandcopy_class_declaration:From.Parsetree.class_declaration->To.Parsetree.class_declaration=funx->copy_class_infoscopy_class_exprxandcopy_class_expr:From.Parsetree.class_expr->To.Parsetree.class_expr=fun{From.Parsetree.pcl_desc;From.Parsetree.pcl_loc;From.Parsetree.pcl_attributes;}->{To.Parsetree.pcl_desc=copy_class_expr_descpcl_desc;To.Parsetree.pcl_loc=copy_locationpcl_loc;To.Parsetree.pcl_attributes=copy_attributespcl_attributes;}andcopy_class_expr_desc:From.Parsetree.class_expr_desc->To.Parsetree.class_expr_desc=function|From.Parsetree.Pcl_constr(x0,x1)->To.Parsetree.Pcl_constr(copy_loccopy_longidentx0,List.mapcopy_core_typex1)|From.Parsetree.Pcl_structurex0->To.Parsetree.Pcl_structure(copy_class_structurex0)|From.Parsetree.Pcl_fun(x0,x1,x2,x3)->To.Parsetree.Pcl_fun(copy_arg_labelx0,copy_optioncopy_expressionx1,copy_patternx2,copy_class_exprx3)|From.Parsetree.Pcl_apply(x0,x1)->To.Parsetree.Pcl_apply(copy_class_exprx0,List.map(funx->letx0,x1=xin(copy_arg_labelx0,copy_expressionx1))x1)|From.Parsetree.Pcl_let(x0,x1,x2)->To.Parsetree.Pcl_let(copy_rec_flagx0,List.mapcopy_value_bindingx1,copy_class_exprx2)|From.Parsetree.Pcl_constraint(x0,x1)->To.Parsetree.Pcl_constraint(copy_class_exprx0,copy_class_typex1)|From.Parsetree.Pcl_extensionx0->To.Parsetree.Pcl_extension(copy_extensionx0)andcopy_class_structure:From.Parsetree.class_structure->To.Parsetree.class_structure=fun{From.Parsetree.pcstr_self;From.Parsetree.pcstr_fields}->{To.Parsetree.pcstr_self=copy_patternpcstr_self;To.Parsetree.pcstr_fields=List.mapcopy_class_fieldpcstr_fields;}andcopy_class_field:From.Parsetree.class_field->To.Parsetree.class_field=fun{From.Parsetree.pcf_desc;From.Parsetree.pcf_loc;From.Parsetree.pcf_attributes;}->{To.Parsetree.pcf_desc=copy_class_field_descpcf_desc;To.Parsetree.pcf_loc=copy_locationpcf_loc;To.Parsetree.pcf_attributes=copy_attributespcf_attributes;}andcopy_class_field_desc:From.Parsetree.class_field_desc->To.Parsetree.class_field_desc=function|From.Parsetree.Pcf_inherit(x0,x1,x2)->To.Parsetree.Pcf_inherit(copy_override_flagx0,copy_class_exprx1,copy_option(funx->nolocx)x2)|From.Parsetree.Pcf_valx0->To.Parsetree.Pcf_val(letx0,x1,x2=x0in(copy_loc(funx->x)x0,copy_mutable_flagx1,copy_class_field_kindx2))|From.Parsetree.Pcf_methodx0->To.Parsetree.Pcf_method(letx0,x1,x2=x0in(copy_loc(funx->x)x0,copy_private_flagx1,copy_class_field_kindx2))|From.Parsetree.Pcf_constraintx0->To.Parsetree.Pcf_constraint(letx0,x1=x0in(copy_core_typex0,copy_core_typex1))|From.Parsetree.Pcf_initializerx0->To.Parsetree.Pcf_initializer(copy_expressionx0)|From.Parsetree.Pcf_attributex0->To.Parsetree.Pcf_attribute(copy_attributex0)|From.Parsetree.Pcf_extensionx0->To.Parsetree.Pcf_extension(copy_extensionx0)andcopy_class_field_kind:From.Parsetree.class_field_kind->To.Parsetree.class_field_kind=function|From.Parsetree.Cfk_virtualx0->To.Parsetree.Cfk_virtual(copy_core_typex0)|From.Parsetree.Cfk_concrete(x0,x1)->To.Parsetree.Cfk_concrete(copy_override_flagx0,copy_expressionx1)andcopy_module_binding:From.Parsetree.module_binding->To.Parsetree.module_binding=fun{From.Parsetree.pmb_name;From.Parsetree.pmb_expr;From.Parsetree.pmb_attributes;From.Parsetree.pmb_loc;}->{To.Parsetree.pmb_name=copy_loc(funx->x)pmb_name;To.Parsetree.pmb_expr=copy_module_exprpmb_expr;To.Parsetree.pmb_attributes=copy_attributespmb_attributes;To.Parsetree.pmb_loc=copy_locationpmb_loc;}andcopy_module_expr:From.Parsetree.module_expr->To.Parsetree.module_expr=fun{From.Parsetree.pmod_desc;From.Parsetree.pmod_loc;From.Parsetree.pmod_attributes;}->{To.Parsetree.pmod_desc=copy_module_expr_descpmod_desc;To.Parsetree.pmod_loc=copy_locationpmod_loc;To.Parsetree.pmod_attributes=copy_attributespmod_attributes;}andcopy_module_expr_desc:From.Parsetree.module_expr_desc->To.Parsetree.module_expr_desc=function|From.Parsetree.Pmod_identx0->To.Parsetree.Pmod_ident(copy_loccopy_longidentx0)|From.Parsetree.Pmod_structurex0->To.Parsetree.Pmod_structure(copy_structurex0)|From.Parsetree.Pmod_functor(x0,x1,x2)->To.Parsetree.Pmod_functor(copy_loc(funx->x)x0,copy_optioncopy_module_typex1,copy_module_exprx2)|From.Parsetree.Pmod_apply(x0,x1)->To.Parsetree.Pmod_apply(copy_module_exprx0,copy_module_exprx1)|From.Parsetree.Pmod_constraint(x0,x1)->To.Parsetree.Pmod_constraint(copy_module_exprx0,copy_module_typex1)|From.Parsetree.Pmod_unpackx0->To.Parsetree.Pmod_unpack(copy_expressionx0)|From.Parsetree.Pmod_extensionx0->To.Parsetree.Pmod_extension(copy_extensionx0)andcopy_module_type:From.Parsetree.module_type->To.Parsetree.module_type=fun{From.Parsetree.pmty_desc;From.Parsetree.pmty_loc;From.Parsetree.pmty_attributes;}->{To.Parsetree.pmty_desc=copy_module_type_descpmty_desc;To.Parsetree.pmty_loc=copy_locationpmty_loc;To.Parsetree.pmty_attributes=copy_attributespmty_attributes;}andcopy_module_type_desc:From.Parsetree.module_type_desc->To.Parsetree.module_type_desc=function|From.Parsetree.Pmty_identx0->To.Parsetree.Pmty_ident(copy_loccopy_longidentx0)|From.Parsetree.Pmty_signaturex0->To.Parsetree.Pmty_signature(copy_signaturex0)|From.Parsetree.Pmty_functor(x0,x1,x2)->To.Parsetree.Pmty_functor(copy_loc(funx->x)x0,copy_optioncopy_module_typex1,copy_module_typex2)|From.Parsetree.Pmty_with(x0,x1)->To.Parsetree.Pmty_with(copy_module_typex0,List.mapcopy_with_constraintx1)|From.Parsetree.Pmty_typeofx0->To.Parsetree.Pmty_typeof(copy_module_exprx0)|From.Parsetree.Pmty_extensionx0->To.Parsetree.Pmty_extension(copy_extensionx0)|From.Parsetree.Pmty_aliasx0->To.Parsetree.Pmty_alias(copy_loccopy_longidentx0)andcopy_with_constraint:From.Parsetree.with_constraint->To.Parsetree.with_constraint=function|From.Parsetree.Pwith_type(x0,x1)->To.Parsetree.Pwith_type(copy_loccopy_longidentx0,copy_type_declarationx1)|From.Parsetree.Pwith_module(x0,x1)->To.Parsetree.Pwith_module(copy_loccopy_longidentx0,copy_loccopy_longidentx1)|From.Parsetree.Pwith_typesubstx0->To.Parsetree.Pwith_typesubst(copy_type_declarationx0)|From.Parsetree.Pwith_modsubst(x0,x1)->To.Parsetree.Pwith_modsubst(copy_loc(funx->x)x0,copy_loccopy_longidentx1)andcopy_signature:From.Parsetree.signature->To.Parsetree.signature=funx->List.mapcopy_signature_itemxandcopy_signature_item:From.Parsetree.signature_item->To.Parsetree.signature_item=fun{From.Parsetree.psig_desc;From.Parsetree.psig_loc}->{To.Parsetree.psig_desc=copy_signature_item_descpsig_desc;To.Parsetree.psig_loc=copy_locationpsig_loc;}andcopy_signature_item_desc:From.Parsetree.signature_item_desc->To.Parsetree.signature_item_desc=function|From.Parsetree.Psig_valuex0->To.Parsetree.Psig_value(copy_value_descriptionx0)|From.Parsetree.Psig_type(x0,x1)->To.Parsetree.Psig_type(copy_rec_flagx0,List.mapcopy_type_declarationx1)|From.Parsetree.Psig_typextx0->To.Parsetree.Psig_typext(copy_type_extensionx0)|From.Parsetree.Psig_exceptionx0->To.Parsetree.Psig_exception(copy_extension_constructorx0)|From.Parsetree.Psig_modulex0->To.Parsetree.Psig_module(copy_module_declarationx0)|From.Parsetree.Psig_recmodulex0->To.Parsetree.Psig_recmodule(List.mapcopy_module_declarationx0)|From.Parsetree.Psig_modtypex0->To.Parsetree.Psig_modtype(copy_module_type_declarationx0)|From.Parsetree.Psig_openx0->To.Parsetree.Psig_open(copy_open_descriptionx0)|From.Parsetree.Psig_includex0->To.Parsetree.Psig_include(copy_include_descriptionx0)|From.Parsetree.Psig_classx0->To.Parsetree.Psig_class(List.mapcopy_class_descriptionx0)|From.Parsetree.Psig_class_typex0->To.Parsetree.Psig_class_type(List.mapcopy_class_type_declarationx0)|From.Parsetree.Psig_attributex0->To.Parsetree.Psig_attribute(copy_attributex0)|From.Parsetree.Psig_extension(x0,x1)->To.Parsetree.Psig_extension(copy_extensionx0,copy_attributesx1)andcopy_class_type_declaration:From.Parsetree.class_type_declaration->To.Parsetree.class_type_declaration=funx->copy_class_infoscopy_class_typexandcopy_class_description:From.Parsetree.class_description->To.Parsetree.class_description=funx->copy_class_infoscopy_class_typexandcopy_class_type:From.Parsetree.class_type->To.Parsetree.class_type=fun{From.Parsetree.pcty_desc;From.Parsetree.pcty_loc;From.Parsetree.pcty_attributes;}->{To.Parsetree.pcty_desc=copy_class_type_descpcty_desc;To.Parsetree.pcty_loc=copy_locationpcty_loc;To.Parsetree.pcty_attributes=copy_attributespcty_attributes;}andcopy_class_type_desc:From.Parsetree.class_type_desc->To.Parsetree.class_type_desc=function|From.Parsetree.Pcty_constr(x0,x1)->To.Parsetree.Pcty_constr(copy_loccopy_longidentx0,List.mapcopy_core_typex1)|From.Parsetree.Pcty_signaturex0->To.Parsetree.Pcty_signature(copy_class_signaturex0)|From.Parsetree.Pcty_arrow(x0,x1,x2)->To.Parsetree.Pcty_arrow(copy_arg_labelx0,copy_core_typex1,copy_class_typex2)|From.Parsetree.Pcty_extensionx0->To.Parsetree.Pcty_extension(copy_extensionx0)andcopy_class_signature:From.Parsetree.class_signature->To.Parsetree.class_signature=fun{From.Parsetree.pcsig_self;From.Parsetree.pcsig_fields}->{To.Parsetree.pcsig_self=copy_core_typepcsig_self;To.Parsetree.pcsig_fields=List.mapcopy_class_type_fieldpcsig_fields;}andcopy_class_type_field:From.Parsetree.class_type_field->To.Parsetree.class_type_field=fun{From.Parsetree.pctf_desc;From.Parsetree.pctf_loc;From.Parsetree.pctf_attributes;}->{To.Parsetree.pctf_desc=copy_class_type_field_descpctf_desc;To.Parsetree.pctf_loc=copy_locationpctf_loc;To.Parsetree.pctf_attributes=copy_attributespctf_attributes;}andcopy_class_type_field_desc:From.Parsetree.class_type_field_desc->To.Parsetree.class_type_field_desc=function|From.Parsetree.Pctf_inheritx0->To.Parsetree.Pctf_inherit(copy_class_typex0)|From.Parsetree.Pctf_valx0->To.Parsetree.Pctf_val(letx0,x1,x2,x3=x0in(nolocx0,copy_mutable_flagx1,copy_virtual_flagx2,copy_core_typex3))|From.Parsetree.Pctf_methodx0->To.Parsetree.Pctf_method(letx0,x1,x2,x3=x0in(nolocx0,copy_private_flagx1,copy_virtual_flagx2,copy_core_typex3))|From.Parsetree.Pctf_constraintx0->To.Parsetree.Pctf_constraint(letx0,x1=x0in(copy_core_typex0,copy_core_typex1))|From.Parsetree.Pctf_attributex0->To.Parsetree.Pctf_attribute(copy_attributex0)|From.Parsetree.Pctf_extensionx0->To.Parsetree.Pctf_extension(copy_extensionx0)andcopy_extension:From.Parsetree.extension->To.Parsetree.extension=funx->letx0,x1=xin(copy_loc(funx->x)x0,copy_payloadx1)andcopy_class_infos:'f0'g0.('f0->'g0)->'f0From.Parsetree.class_infos->'g0To.Parsetree.class_infos=funf0{From.Parsetree.pci_virt;From.Parsetree.pci_params;From.Parsetree.pci_name;From.Parsetree.pci_expr;From.Parsetree.pci_loc;From.Parsetree.pci_attributes;}->{To.Parsetree.pci_virt=copy_virtual_flagpci_virt;To.Parsetree.pci_params=List.map(funx->letx0,x1=xin(copy_core_typex0,copy_variancex1))pci_params;To.Parsetree.pci_name=copy_loc(funx->x)pci_name;To.Parsetree.pci_expr=f0pci_expr;To.Parsetree.pci_loc=copy_locationpci_loc;To.Parsetree.pci_attributes=copy_attributespci_attributes;}andcopy_virtual_flag:From.Asttypes.virtual_flag->To.Asttypes.virtual_flag=function|From.Asttypes.Virtual->To.Asttypes.Virtual|From.Asttypes.Concrete->To.Asttypes.Concreteandcopy_include_description:From.Parsetree.include_description->To.Parsetree.include_description=funx->copy_include_infoscopy_module_typexandcopy_include_infos:'f0'g0.('f0->'g0)->'f0From.Parsetree.include_infos->'g0To.Parsetree.include_infos=funf0{From.Parsetree.pincl_mod;From.Parsetree.pincl_loc;From.Parsetree.pincl_attributes;}->{To.Parsetree.pincl_mod=f0pincl_mod;To.Parsetree.pincl_loc=copy_locationpincl_loc;To.Parsetree.pincl_attributes=copy_attributespincl_attributes;}andcopy_open_description:From.Parsetree.open_description->To.Parsetree.open_description=fun{From.Parsetree.popen_lid;From.Parsetree.popen_override;From.Parsetree.popen_loc;From.Parsetree.popen_attributes;}->{To.Parsetree.popen_lid=copy_loccopy_longidentpopen_lid;To.Parsetree.popen_override=copy_override_flagpopen_override;To.Parsetree.popen_loc=copy_locationpopen_loc;To.Parsetree.popen_attributes=copy_attributespopen_attributes;}andcopy_override_flag:From.Asttypes.override_flag->To.Asttypes.override_flag=function|From.Asttypes.Override->To.Asttypes.Override|From.Asttypes.Fresh->To.Asttypes.Freshandcopy_module_type_declaration:From.Parsetree.module_type_declaration->To.Parsetree.module_type_declaration=fun{From.Parsetree.pmtd_name;From.Parsetree.pmtd_type;From.Parsetree.pmtd_attributes;From.Parsetree.pmtd_loc;}->{To.Parsetree.pmtd_name=copy_loc(funx->x)pmtd_name;To.Parsetree.pmtd_type=copy_optioncopy_module_typepmtd_type;To.Parsetree.pmtd_attributes=copy_attributespmtd_attributes;To.Parsetree.pmtd_loc=copy_locationpmtd_loc;}andcopy_module_declaration:From.Parsetree.module_declaration->To.Parsetree.module_declaration=fun{From.Parsetree.pmd_name;From.Parsetree.pmd_type;From.Parsetree.pmd_attributes;From.Parsetree.pmd_loc;}->{To.Parsetree.pmd_name=copy_loc(funx->x)pmd_name;To.Parsetree.pmd_type=copy_module_typepmd_type;To.Parsetree.pmd_attributes=copy_attributespmd_attributes;To.Parsetree.pmd_loc=copy_locationpmd_loc;}andcopy_type_extension:From.Parsetree.type_extension->To.Parsetree.type_extension=fun{From.Parsetree.ptyext_path;From.Parsetree.ptyext_params;From.Parsetree.ptyext_constructors;From.Parsetree.ptyext_private;From.Parsetree.ptyext_attributes;}->{To.Parsetree.ptyext_path=copy_loccopy_longidentptyext_path;To.Parsetree.ptyext_params=List.map(funx->letx0,x1=xin(copy_core_typex0,copy_variancex1))ptyext_params;To.Parsetree.ptyext_constructors=List.mapcopy_extension_constructorptyext_constructors;To.Parsetree.ptyext_private=copy_private_flagptyext_private;To.Parsetree.ptyext_attributes=copy_attributesptyext_attributes;}andcopy_extension_constructor:From.Parsetree.extension_constructor->To.Parsetree.extension_constructor=fun{From.Parsetree.pext_name;From.Parsetree.pext_kind;From.Parsetree.pext_loc;From.Parsetree.pext_attributes;}->{To.Parsetree.pext_name=copy_loc(funx->x)pext_name;To.Parsetree.pext_kind=copy_extension_constructor_kindpext_kind;To.Parsetree.pext_loc=copy_locationpext_loc;To.Parsetree.pext_attributes=copy_attributespext_attributes;}andcopy_extension_constructor_kind:From.Parsetree.extension_constructor_kind->To.Parsetree.extension_constructor_kind=function|From.Parsetree.Pext_decl(x0,x1)->To.Parsetree.Pext_decl(copy_constructor_argumentsx0,copy_optioncopy_core_typex1)|From.Parsetree.Pext_rebindx0->To.Parsetree.Pext_rebind(copy_loccopy_longidentx0)andcopy_type_declaration:From.Parsetree.type_declaration->To.Parsetree.type_declaration=fun{From.Parsetree.ptype_name;From.Parsetree.ptype_params;From.Parsetree.ptype_cstrs;From.Parsetree.ptype_kind;From.Parsetree.ptype_private;From.Parsetree.ptype_manifest;From.Parsetree.ptype_attributes;From.Parsetree.ptype_loc;}->{To.Parsetree.ptype_name=copy_loc(funx->x)ptype_name;To.Parsetree.ptype_params=List.map(funx->letx0,x1=xin(copy_core_typex0,copy_variancex1))ptype_params;To.Parsetree.ptype_cstrs=List.map(funx->letx0,x1,x2=xin(copy_core_typex0,copy_core_typex1,copy_locationx2))ptype_cstrs;To.Parsetree.ptype_kind=copy_type_kindptype_kind;To.Parsetree.ptype_private=copy_private_flagptype_private;To.Parsetree.ptype_manifest=copy_optioncopy_core_typeptype_manifest;To.Parsetree.ptype_attributes=copy_attributesptype_attributes;To.Parsetree.ptype_loc=copy_locationptype_loc;}andcopy_private_flag:From.Asttypes.private_flag->To.Asttypes.private_flag=function|From.Asttypes.Private->To.Asttypes.Private|From.Asttypes.Public->To.Asttypes.Publicandcopy_type_kind:From.Parsetree.type_kind->To.Parsetree.type_kind=function|From.Parsetree.Ptype_abstract->To.Parsetree.Ptype_abstract|From.Parsetree.Ptype_variantx0->To.Parsetree.Ptype_variant(List.mapcopy_constructor_declarationx0)|From.Parsetree.Ptype_recordx0->To.Parsetree.Ptype_record(List.mapcopy_label_declarationx0)|From.Parsetree.Ptype_open->To.Parsetree.Ptype_openandcopy_constructor_declaration:From.Parsetree.constructor_declaration->To.Parsetree.constructor_declaration=fun{From.Parsetree.pcd_name;From.Parsetree.pcd_args;From.Parsetree.pcd_res;From.Parsetree.pcd_loc;From.Parsetree.pcd_attributes;}->{To.Parsetree.pcd_name=copy_loc(funx->x)pcd_name;To.Parsetree.pcd_args=copy_constructor_argumentspcd_args;To.Parsetree.pcd_res=copy_optioncopy_core_typepcd_res;To.Parsetree.pcd_loc=copy_locationpcd_loc;To.Parsetree.pcd_attributes=copy_attributespcd_attributes;}andcopy_constructor_arguments:From.Parsetree.constructor_arguments->To.Parsetree.constructor_arguments=function|From.Parsetree.Pcstr_tuplex0->To.Parsetree.Pcstr_tuple(List.mapcopy_core_typex0)|From.Parsetree.Pcstr_recordx0->To.Parsetree.Pcstr_record(List.mapcopy_label_declarationx0)andcopy_label_declaration:From.Parsetree.label_declaration->To.Parsetree.label_declaration=fun{From.Parsetree.pld_name;From.Parsetree.pld_mutable;From.Parsetree.pld_type;From.Parsetree.pld_loc;From.Parsetree.pld_attributes;}->{To.Parsetree.pld_name=copy_loc(funx->x)pld_name;To.Parsetree.pld_mutable=copy_mutable_flagpld_mutable;To.Parsetree.pld_type=copy_core_typepld_type;To.Parsetree.pld_loc=copy_locationpld_loc;To.Parsetree.pld_attributes=copy_attributespld_attributes;}andcopy_mutable_flag:From.Asttypes.mutable_flag->To.Asttypes.mutable_flag=function|From.Asttypes.Immutable->To.Asttypes.Immutable|From.Asttypes.Mutable->To.Asttypes.Mutableandcopy_variance:From.Asttypes.variance->To.Asttypes.variance=function|From.Asttypes.Covariant->To.Asttypes.Covariant|From.Asttypes.Contravariant->To.Asttypes.Contravariant|From.Asttypes.Invariant->To.Asttypes.Invariantandcopy_value_description:From.Parsetree.value_description->To.Parsetree.value_description=fun{From.Parsetree.pval_name;From.Parsetree.pval_type;From.Parsetree.pval_prim;From.Parsetree.pval_attributes;From.Parsetree.pval_loc;}->{To.Parsetree.pval_name=copy_loc(funx->x)pval_name;To.Parsetree.pval_type=copy_core_typepval_type;To.Parsetree.pval_prim=List.map(funx->x)pval_prim;To.Parsetree.pval_attributes=copy_attributespval_attributes;To.Parsetree.pval_loc=copy_locationpval_loc;}andcopy_arg_label:From.Asttypes.arg_label->To.Asttypes.arg_label=function|From.Asttypes.Nolabel->To.Asttypes.Nolabel|From.Asttypes.Labelledx0->To.Asttypes.Labelledx0|From.Asttypes.Optionalx0->To.Asttypes.Optionalx0andcopy_closed_flag:From.Asttypes.closed_flag->To.Asttypes.closed_flag=function|From.Asttypes.Closed->To.Asttypes.Closed|From.Asttypes.Open->To.Asttypes.Openandcopy_label:From.Asttypes.label->To.Asttypes.label=funx->xandcopy_rec_flag:From.Asttypes.rec_flag->To.Asttypes.rec_flag=function|From.Asttypes.Nonrecursive->To.Asttypes.Nonrecursive|From.Asttypes.Recursive->To.Asttypes.Recursiveandcopy_constant:From.Parsetree.constant->To.Parsetree.constant=function|From.Parsetree.Pconst_integer(x0,x1)->To.Parsetree.Pconst_integer(x0,copy_option(funx->x)x1)|From.Parsetree.Pconst_charx0->To.Parsetree.Pconst_charx0|From.Parsetree.Pconst_string(x0,x1)->To.Parsetree.Pconst_string(x0,copy_option(funx->x)x1)|From.Parsetree.Pconst_float(x0,x1)->To.Parsetree.Pconst_float(x0,copy_option(funx->x)x1)andcopy_option:'f0'g0.('f0->'g0)->'f0option->'g0option=funf0->functionNone->None|Somex0->Some(f0x0)andcopy_longident:Longident.t->Longident.t=funx->xandcopy_loc:'f0'g0.('f0->'g0)->'f0From.Asttypes.loc->'g0To.Asttypes.loc=funf0{From.Asttypes.txt;From.Asttypes.loc}->{To.Asttypes.txt=f0txt;To.Asttypes.loc=copy_locationloc}andcopy_location:Location.t->Location.t=funx->xandcopy_bool:bool->bool=functionfalse->false|true->trueletreccopy_toplevel_phrase:From.Parsetree.toplevel_phrase->To.Parsetree.toplevel_phrase=function|From.Parsetree.Ptop_defx0->To.Parsetree.Ptop_def(copy_structurex0)|From.Parsetree.Ptop_dir(x0,x1)->To.Parsetree.Ptop_dir(x0,copy_directive_argumentx1)andcopy_directive_argument:From.Parsetree.directive_argument->To.Parsetree.directive_argument=function|From.Parsetree.Pdir_none->To.Parsetree.Pdir_none|From.Parsetree.Pdir_stringx0->To.Parsetree.Pdir_stringx0|From.Parsetree.Pdir_int(x0,x1)->To.Parsetree.Pdir_int(x0,copy_option(funx->x)x1)|From.Parsetree.Pdir_identx0->To.Parsetree.Pdir_ident(copy_longidentx0)|From.Parsetree.Pdir_boolx0->To.Parsetree.Pdir_bool(copy_boolx0)letcopy_casesx=List.mapcopy_casexletcopy_pat=copy_patternletcopy_expr=copy_expressionletcopy_typ=copy_core_type