Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
compat_top.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
open Mdx.Migrate_ast #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 8 let try_finally ~always f = Misc.try_finally f ~always #else let try_finally ~always f = Misc.try_finally f always #endif let map_error_loc ~f (error : Location.error) = #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 8 let f_msg (msg : Location.msg) = { msg with loc = f msg.loc} in { error with main = f_msg error.main; sub = List.map f_msg error.sub; } #else let rec aux (error : Location.error) = {error with sub = List.map aux error.sub; loc = f error.loc} in aux error #endif let error_of_exn exn = #if OCAML_MAJOR >= 4 && OCAML_MINOR > 5 match Location.error_of_exn exn with | None -> None | Some `Already_displayed -> None | Some (`Ok error) -> Some error #else Location.error_of_exn exn #endif let rec get_id_in_path = function | Path.Pident id -> id #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 8 | Path.Pdot (p, _) -> get_id_in_path p #else | Path.Pdot (p, _, _) -> get_id_in_path p #endif | Path.Papply (_, p) -> get_id_in_path p let lookup_type typ env = #if OCAML_MAJOR >= 4 && OCAML_MINOR < 4 Env.lookup_type typ env |> fst #else Env.lookup_type typ env #endif let type_structure env str loc = #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 8 let tstr, _, _, env = #else let tstr, _, env = #endif Typemod.type_structure env str loc in tstr, env let sig_value id desc = #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 8 Types.Sig_value (id, desc, Exported) #else Types.Sig_value (id, desc) #endif let sig_type id desc = #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 8 Types.Sig_type (id, desc, Trec_not, Exported) #else Types.Sig_type (id, desc, Trec_not) #endif let sig_typext id ext = #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 8 Types.Sig_typext (id, ext, Text_exception, Exported) #else Types.Sig_typext (id, ext, Text_exception) #endif let sig_module id md = #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 8 Types.Sig_module (id, Mp_present, md, Trec_not, Exported) #else Types.Sig_module (id, md, Trec_not) #endif let mty_path = let open Types in function #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 8 | Mty_alias(path) -> Some path #elif OCAML_MAJOR >= 4 && OCAML_MINOR > 3 | Mty_alias(_, path) -> Some path #else | Mty_alias path -> Some path #endif | Mty_ident _ | Mty_signature _ | Mty_functor _ -> None let sig_modtype id desc = #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 8 Types.Sig_modtype (id, desc, Exported) #else Types.Sig_modtype (id, desc) #endif let sig_class id desc = #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 8 Types.Sig_class (id, desc, Trec_not, Exported) #else Types.Sig_class (id, desc, Trec_not) #endif let sig_class_type id desc = #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 8 Types.Sig_class_type (id, desc, Trec_not, Exported) #else Types.Sig_class_type (id, desc, Trec_not) #endif let add_directive ~name ~doc kind = #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 3 let directive = match kind with | `Bool f -> Toploop.Directive_bool f | `Show_prim to_sig -> let show_prim to_sig lid = let env = !Toploop.toplevel_env in let loc = Location.none in try let s = match lid with | Longident.Lident s -> s | Longident.Ldot (_,s) -> s | Longident.Lapply _ -> Format.printf "Invalid path %a@." Printtyp.longident lid; raise Exit in let id = Ident.create_persistent s in let sg = to_sig env loc id lid in Printtyp.wrap_printing_env env (fun () -> Format.printf "@[%a@]@." Printtyp.signature sg ) with | Not_found -> Format.printf "@[Unknown element.@]@." | Exit -> () in (Toploop.Directive_ident (show_prim to_sig)) in Toploop.add_directive name directive { section = "Environment queries"; doc } #else ignore (name, doc, kind) #endif let extension_constructor ~ext_type_path ~ext_type_params ~ext_args ~ext_ret_type ~ext_private ~ext_loc ~ext_attributes = let open Types in let ext_args = #if OCAML_MAJOR >= 4 && OCAML_MINOR < 3 ext_args #else Cstr_tuple ext_args #endif in { ext_type_path ; ext_type_params ; ext_args ; ext_ret_type ; ext_private ; ext_loc ; ext_attributes } let is_predef_or_global id = #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 8 Ident.is_predef id || Ident.global id #else Ident.binding_time id < 1000 #endif let map_sig_attributes ~f = let open Types in List.map (function #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 8 | Sig_module (id, mp, md, rs, visibility) -> Sig_module ( id, mp, {md with md_attributes = f md.md_attributes }, rs, visibility ) #else | Sig_module (id, md, rs) -> Sig_module ( id, {md with md_attributes = f md.md_attributes}, rs ) #endif | item -> item ) let attribute ~name ~payload = #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 8 { Parsetree_.attr_name = name ; attr_payload = payload ; attr_loc = Location.none } #else (name, payload) #endif module Linked = struct include (Topdirs : sig end) #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 3 include (Ephemeron : sig end) #endif include (Uchar : sig end) include (Condition : sig end) end let match_env ~value ~empty ~open_ ~functor_arg ~constraints ~copy_types ~module_ ~persistent ~type_ ~modtype ~cltype ~class_ ~extension env = ignore (constraints, persistent, copy_types); match env with | Env.Env_value (summary, id, _) -> value summary id | Env_empty -> empty () #if OCAML_MAJOR = 4 && OCAML_MINOR = 7 | Env_open (summary, _, pid) -> #else | Env_open (summary, pid) -> #endif open_ summary pid | Env_functor_arg (summary, id) -> functor_arg summary id #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 8 | Env_module (summary, id, presence, _) -> let present = match presence with | Mp_present -> true | Mp_absent -> false in module_ summary id ~present #else | Env_module (summary, id, _) -> module_ summary id ~present:true #endif | Env_type (summary, _, _) -> type_ summary | Env_modtype (summary, _, _) -> modtype summary | Env_cltype (summary, _, _) -> cltype summary | Env_class (summary, id, _) -> class_ summary id | Env_extension (summary, id, _) -> extension summary id #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 4 | Env_constraints (summary, _) -> constraints summary #endif #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 6 | Env_copy_types (summary, _) -> copy_types summary #endif #if OCAML_MAJOR >= 4 && OCAML_MINOR >= 8 | Env_persistent (summary, _) -> persistent summary #endif