package merlin-lib
Merlin's libraries
Install
Dune Dependency
Authors
Maintainers
Sources
merlin-4.19-414.tbz
sha256=60a630f59203a9ce7047a5f04d0f239945960dac6f38102922e328b6d2657384
sha512=19f8ec152356873e29c05b971a529146bb7079929037c2b35a5c0afb0b3adf662341ee8527282c5fdd16de391d01c2c469fc8629af9e0ae443fa9f42472b70bb
doc/src/merlin-lib.ocaml_typing/tast_iterator.ml.html
Source file tast_iterator.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 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517
(**************************************************************************) (* *) (* OCaml *) (* *) (* Isaac "Izzy" Avram *) (* *) (* Copyright 2019 Institut National de Recherche en Informatique et *) (* en Automatique. *) (* *) (* 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. *) (* *) (**************************************************************************) open Asttypes open Typedtree type iterator = { binding_op: iterator -> binding_op -> unit; case: 'k . iterator -> 'k case -> unit; class_declaration: iterator -> class_declaration -> unit; class_description: iterator -> class_description -> unit; class_expr: iterator -> class_expr -> unit; class_field: iterator -> class_field -> unit; class_signature: iterator -> class_signature -> unit; class_structure: iterator -> class_structure -> unit; class_type: iterator -> class_type -> unit; class_type_declaration: iterator -> class_type_declaration -> unit; class_type_field: iterator -> class_type_field -> unit; env: iterator -> Env.t -> unit; expr: iterator -> expression -> unit; extension_constructor: iterator -> extension_constructor -> unit; module_binding: iterator -> module_binding -> unit; module_coercion: iterator -> module_coercion -> unit; module_declaration: iterator -> module_declaration -> unit; module_substitution: iterator -> module_substitution -> unit; module_expr: iterator -> module_expr -> unit; module_type: iterator -> module_type -> unit; module_type_declaration: iterator -> module_type_declaration -> unit; package_type: iterator -> package_type -> unit; pat: 'k . iterator -> 'k general_pattern -> unit; row_field: iterator -> row_field -> unit; object_field: iterator -> object_field -> unit; open_declaration: iterator -> open_declaration -> unit; open_description: iterator -> open_description -> unit; signature: iterator -> signature -> unit; signature_item: iterator -> signature_item -> unit; structure: iterator -> structure -> unit; structure_item: iterator -> structure_item -> unit; typ: iterator -> core_type -> unit; type_declaration: iterator -> type_declaration -> unit; type_declarations: iterator -> (rec_flag * type_declaration list) -> unit; type_extension: iterator -> type_extension -> unit; type_exception: iterator -> type_exception -> unit; type_kind: iterator -> type_kind -> unit; value_binding: iterator -> value_binding -> unit; value_bindings: iterator -> (rec_flag * value_binding list) -> unit; value_description: iterator -> value_description -> unit; with_constraint: iterator -> with_constraint -> unit; } let structure sub {str_items; str_final_env; _} = List.iter (sub.structure_item sub) str_items; sub.env sub str_final_env let class_infos sub f x = List.iter (fun (ct, _) -> sub.typ sub ct) x.ci_params; f x.ci_expr let module_type_declaration sub {mtd_type; _} = Option.iter (sub.module_type sub) mtd_type let module_declaration sub {md_type; _} = sub.module_type sub md_type let module_substitution _ _ = () let include_infos f {incl_mod; _} = f incl_mod let class_type_declaration sub x = class_infos sub (sub.class_type sub) x let class_declaration sub x = class_infos sub (sub.class_expr sub) x let structure_item sub {str_desc; str_env; _} = sub.env sub str_env; match str_desc with | Tstr_eval (exp, _) -> sub.expr sub exp | Tstr_value (rec_flag, list) -> sub.value_bindings sub (rec_flag, list) | Tstr_primitive v -> sub.value_description sub v | Tstr_type (rec_flag, list) -> sub.type_declarations sub (rec_flag, list) | Tstr_typext te -> sub.type_extension sub te | Tstr_exception ext -> sub.type_exception sub ext | Tstr_module mb -> sub.module_binding sub mb | Tstr_recmodule list -> List.iter (sub.module_binding sub) list | Tstr_modtype x -> sub.module_type_declaration sub x | Tstr_class list -> List.iter (fun (cls,_) -> sub.class_declaration sub cls) list | Tstr_class_type list -> List.iter (fun (_, _, cltd) -> sub.class_type_declaration sub cltd) list | Tstr_include incl -> include_infos (sub.module_expr sub) incl | Tstr_open od -> sub.open_declaration sub od | Tstr_attribute _ -> () let value_description sub x = sub.typ sub x.val_desc let label_decl sub {ld_type; _} = sub.typ sub ld_type let constructor_args sub = function | Cstr_tuple l -> List.iter (sub.typ sub) l | Cstr_record l -> List.iter (label_decl sub) l let constructor_decl sub {cd_args; cd_res; _} = constructor_args sub cd_args; Option.iter (sub.typ sub) cd_res let type_kind sub = function | Ttype_abstract -> () | Ttype_variant list -> List.iter (constructor_decl sub) list | Ttype_record list -> List.iter (label_decl sub) list | Ttype_open -> () let type_declaration sub {typ_cstrs; typ_kind; typ_manifest; typ_params; _} = List.iter (fun (c1, c2, _) -> sub.typ sub c1; sub.typ sub c2) typ_cstrs; sub.type_kind sub typ_kind; Option.iter (sub.typ sub) typ_manifest; List.iter (fun (c, _) -> sub.typ sub c) typ_params let type_declarations sub (_, list) = List.iter (sub.type_declaration sub) list let type_extension sub {tyext_constructors; tyext_params; _} = List.iter (fun (c, _) -> sub.typ sub c) tyext_params; List.iter (sub.extension_constructor sub) tyext_constructors let type_exception sub {tyexn_constructor; _} = sub.extension_constructor sub tyexn_constructor let extension_constructor sub {ext_kind; _} = match ext_kind with | Text_decl (_, ctl, cto) -> constructor_args sub ctl; Option.iter (sub.typ sub) cto | Text_rebind _ -> () let pat_extra sub (e, _loc, _attrs) = match e with | Tpat_type _ -> () | Tpat_unpack -> () | Tpat_open (_, _, env) -> sub.env sub env | Tpat_constraint ct -> sub.typ sub ct let pat : type k . iterator -> k general_pattern -> unit = fun sub {pat_extra = extra; pat_desc; pat_env; _} -> sub.env sub pat_env; List.iter (pat_extra sub) extra; match pat_desc with | Tpat_any -> () | Tpat_var _ -> () | Tpat_constant _ -> () | Tpat_tuple l -> List.iter (sub.pat sub) l | Tpat_construct (_, _, l, vto) -> List.iter (sub.pat sub) l; Option.iter (fun (_ids, ct) -> sub.typ sub ct) vto | Tpat_variant (_, po, _) -> Option.iter (sub.pat sub) po | Tpat_record (l, _) -> List.iter (fun (_, _, i) -> sub.pat sub i) l | Tpat_array l -> List.iter (sub.pat sub) l | Tpat_alias (p, _, _) -> sub.pat sub p | Tpat_lazy p -> sub.pat sub p | Tpat_value p -> sub.pat sub (p :> pattern) | Tpat_exception p -> sub.pat sub p | Tpat_or (p1, p2, _) -> sub.pat sub p1; sub.pat sub p2 let expr sub {exp_extra; exp_desc; exp_env; _} = let extra = function | Texp_constraint cty -> sub.typ sub cty | Texp_coerce (cty1, cty2) -> Option.iter (sub.typ sub) cty1; sub.typ sub cty2 | Texp_newtype _ -> () | Texp_newtype' _ -> () | Texp_poly cto -> Option.iter (sub.typ sub) cto in List.iter (fun (e, _, _) -> extra e) exp_extra; sub.env sub exp_env; match exp_desc with | Texp_ident _ -> () | Texp_constant _ -> () | Texp_let (rec_flag, list, exp) -> sub.value_bindings sub (rec_flag, list); sub.expr sub exp | Texp_function {cases; _} -> List.iter (sub.case sub) cases | Texp_apply (exp, list) -> sub.expr sub exp; List.iter (fun (_, o) -> Option.iter (sub.expr sub) o) list | Texp_match (exp, cases, _) -> sub.expr sub exp; List.iter (sub.case sub) cases | Texp_try (exp, cases) -> sub.expr sub exp; List.iter (sub.case sub) cases | Texp_tuple list -> List.iter (sub.expr sub) list | Texp_construct (_, _, args) -> List.iter (sub.expr sub) args | Texp_variant (_, expo) -> Option.iter (sub.expr sub) expo | Texp_record { fields; extended_expression; _} -> Array.iter (function | _, Kept _ -> () | _, Overridden (_, exp) -> sub.expr sub exp) fields; Option.iter (sub.expr sub) extended_expression; | Texp_field (exp, _, _) -> sub.expr sub exp | Texp_setfield (exp1, _, _, exp2) -> sub.expr sub exp1; sub.expr sub exp2 | Texp_array list -> List.iter (sub.expr sub) list | Texp_ifthenelse (exp1, exp2, expo) -> sub.expr sub exp1; sub.expr sub exp2; Option.iter (sub.expr sub) expo | Texp_sequence (exp1, exp2) -> sub.expr sub exp1; sub.expr sub exp2 | Texp_while (exp1, exp2) -> sub.expr sub exp1; sub.expr sub exp2 | Texp_for (_, _, exp1, exp2, _, exp3) -> sub.expr sub exp1; sub.expr sub exp2; sub.expr sub exp3 | Texp_send (exp, _) -> sub.expr sub exp | Texp_new _ -> () | Texp_instvar _ -> () | Texp_setinstvar (_, _, _, exp) ->sub.expr sub exp | Texp_override (_, list) -> List.iter (fun (_, _, e) -> sub.expr sub e) list | Texp_letmodule (_, _, _, mexpr, exp) -> sub.module_expr sub mexpr; sub.expr sub exp | Texp_letexception (cd, exp) -> sub.extension_constructor sub cd; sub.expr sub exp | Texp_assert exp -> sub.expr sub exp | Texp_lazy exp -> sub.expr sub exp | Texp_object (cl, _) -> sub.class_structure sub cl | Texp_pack mexpr -> sub.module_expr sub mexpr | Texp_letop {let_ = l; ands; body; _} -> sub.binding_op sub l; List.iter (sub.binding_op sub) ands; sub.case sub body | Texp_unreachable -> () | Texp_extension_constructor _ -> () | Texp_open (od, e) -> sub.open_declaration sub od; sub.expr sub e | Texp_typed_hole -> () let package_type sub {pack_fields; _} = List.iter (fun (_, p) -> sub.typ sub p) pack_fields let binding_op sub {bop_exp; _} = sub.expr sub bop_exp let signature sub {sig_items; sig_final_env; _} = sub.env sub sig_final_env; List.iter (sub.signature_item sub) sig_items let signature_item sub {sig_desc; sig_env; _} = sub.env sub sig_env; match sig_desc with | Tsig_value v -> sub.value_description sub v | Tsig_type (rf, tdl) -> sub.type_declarations sub (rf, tdl) | Tsig_typesubst list -> sub.type_declarations sub (Nonrecursive, list) | Tsig_typext te -> sub.type_extension sub te | Tsig_exception ext -> sub.type_exception sub ext | Tsig_module x -> sub.module_declaration sub x | Tsig_modsubst x -> sub.module_substitution sub x | Tsig_recmodule list -> List.iter (sub.module_declaration sub) list | Tsig_modtype x -> sub.module_type_declaration sub x | Tsig_modtypesubst x -> sub.module_type_declaration sub x | Tsig_include incl -> include_infos (sub.module_type sub) incl | Tsig_class list -> List.iter (sub.class_description sub) list | Tsig_class_type list -> List.iter (sub.class_type_declaration sub) list | Tsig_open od -> sub.open_description sub od | Tsig_attribute _ -> () let class_description sub x = class_infos sub (sub.class_type sub) x let functor_parameter sub = function | Unit -> () | Named (_, _, mtype) -> sub.module_type sub mtype let module_type sub {mty_desc; mty_env; _} = sub.env sub mty_env; match mty_desc with | Tmty_ident _ -> () | Tmty_alias _ -> () | Tmty_signature sg -> sub.signature sub sg | Tmty_functor (arg, mtype2) -> functor_parameter sub arg; sub.module_type sub mtype2 | Tmty_with (mtype, list) -> sub.module_type sub mtype; List.iter (fun (_, _, e) -> sub.with_constraint sub e) list | Tmty_typeof mexpr -> sub.module_expr sub mexpr let with_constraint sub = function | Twith_type decl -> sub.type_declaration sub decl | Twith_typesubst decl -> sub.type_declaration sub decl | Twith_module _ -> () | Twith_modsubst _ -> () | Twith_modtype _ -> () | Twith_modtypesubst _ -> () let open_description sub {open_env; _} = sub.env sub open_env let open_declaration sub {open_expr; open_env; _} = sub.module_expr sub open_expr; sub.env sub open_env let module_coercion sub = function | Tcoerce_none -> () | Tcoerce_functor (c1,c2) -> sub.module_coercion sub c1; sub.module_coercion sub c2 | Tcoerce_alias (env, _, c1) -> sub.env sub env; sub.module_coercion sub c1 | Tcoerce_structure (l1, l2) -> List.iter (fun (_, c) -> sub.module_coercion sub c) l1; List.iter (fun (_, _ ,c) -> sub.module_coercion sub c) l2 | Tcoerce_primitive {pc_env; _} -> sub.env sub pc_env let module_expr sub {mod_desc; mod_env; _} = sub.env sub mod_env; match mod_desc with | Tmod_ident _ | Tmod_typed_hole -> () | Tmod_structure st -> sub.structure sub st | Tmod_functor (arg, mexpr) -> functor_parameter sub arg; sub.module_expr sub mexpr | Tmod_apply (mexp1, mexp2, c) -> sub.module_expr sub mexp1; sub.module_expr sub mexp2; sub.module_coercion sub c | Tmod_constraint (mexpr, _, Tmodtype_implicit, c) -> sub.module_expr sub mexpr; sub.module_coercion sub c | Tmod_constraint (mexpr, _, Tmodtype_explicit mtype, c) -> sub.module_expr sub mexpr; sub.module_type sub mtype; sub.module_coercion sub c | Tmod_unpack (exp, _) -> sub.expr sub exp let module_binding sub {mb_expr; _} = sub.module_expr sub mb_expr let class_expr sub {cl_desc; cl_env; _} = sub.env sub cl_env; match cl_desc with | Tcl_constraint (cl, clty, _, _, _) -> sub.class_expr sub cl; Option.iter (sub.class_type sub) clty | Tcl_structure clstr -> sub.class_structure sub clstr | Tcl_fun (_, pat, priv, cl, _) -> sub.pat sub pat; List.iter (fun (_, e) -> sub.expr sub e) priv; sub.class_expr sub cl | Tcl_apply (cl, args) -> sub.class_expr sub cl; List.iter (fun (_, e) -> Option.iter (sub.expr sub) e) args | Tcl_let (rec_flag, value_bindings, ivars, cl) -> sub.value_bindings sub (rec_flag, value_bindings); List.iter (fun (_, e) -> sub.expr sub e) ivars; sub.class_expr sub cl | Tcl_ident (_, _, tyl) -> List.iter (sub.typ sub) tyl | Tcl_open (od, e) -> sub.open_description sub od; sub.class_expr sub e let class_type sub {cltyp_desc; cltyp_env; _} = sub.env sub cltyp_env; match cltyp_desc with | Tcty_signature csg -> sub.class_signature sub csg | Tcty_constr (_, _, list) -> List.iter (sub.typ sub) list | Tcty_arrow (_, ct, cl) -> sub.typ sub ct; sub.class_type sub cl | Tcty_open (od, e) -> sub.open_description sub od; sub.class_type sub e let class_signature sub {csig_self; csig_fields; _} = sub.typ sub csig_self; List.iter (sub.class_type_field sub) csig_fields let class_type_field sub {ctf_desc; _} = match ctf_desc with | Tctf_inherit ct -> sub.class_type sub ct | Tctf_val (_, _, _, ct) -> sub.typ sub ct | Tctf_method (_, _, _, ct) -> sub.typ sub ct | Tctf_constraint (ct1, ct2) -> sub.typ sub ct1; sub.typ sub ct2 | Tctf_attribute _ -> () let typ sub {ctyp_desc; ctyp_env; _} = sub.env sub ctyp_env; match ctyp_desc with | Ttyp_any -> () | Ttyp_var _ -> () | Ttyp_arrow (_, ct1, ct2) -> sub.typ sub ct1; sub.typ sub ct2 | Ttyp_tuple list -> List.iter (sub.typ sub) list | Ttyp_constr (_, _, list) -> List.iter (sub.typ sub) list | Ttyp_object (list, _) -> List.iter (sub.object_field sub) list | Ttyp_class (_, _, list) -> List.iter (sub.typ sub) list | Ttyp_alias (ct, _) -> sub.typ sub ct | Ttyp_variant (list, _, _) -> List.iter (sub.row_field sub) list | Ttyp_poly (_, ct) -> sub.typ sub ct | Ttyp_package pack -> sub.package_type sub pack let class_structure sub {cstr_self; cstr_fields; _} = sub.pat sub cstr_self; List.iter (sub.class_field sub) cstr_fields let row_field sub {rf_desc; _} = match rf_desc with | Ttag (_, _, list) -> List.iter (sub.typ sub) list | Tinherit ct -> sub.typ sub ct let object_field sub {of_desc; _} = match of_desc with | OTtag (_, ct) -> sub.typ sub ct | OTinherit ct -> sub.typ sub ct let class_field_kind sub = function | Tcfk_virtual ct -> sub.typ sub ct | Tcfk_concrete (_, e) -> sub.expr sub e let class_field sub {cf_desc; _} = match cf_desc with | Tcf_inherit (_, cl, _, _, _) -> sub.class_expr sub cl | Tcf_constraint (cty1, cty2) -> sub.typ sub cty1; sub.typ sub cty2 | Tcf_val (_, _, _, k, _) -> class_field_kind sub k | Tcf_method (_, _, k) -> class_field_kind sub k | Tcf_initializer exp -> sub.expr sub exp | Tcf_attribute _ -> () let value_bindings sub (_, list) = List.iter (sub.value_binding sub) list let case sub {c_lhs; c_guard; c_rhs} = sub.pat sub c_lhs; Option.iter (sub.expr sub) c_guard; sub.expr sub c_rhs let value_binding sub {vb_pat; vb_expr; _} = sub.pat sub vb_pat; sub.expr sub vb_expr let env _sub _ = () let default_iterator = { binding_op; case; class_declaration; class_description; class_expr; class_field; class_signature; class_structure; class_type; class_type_declaration; class_type_field; env; expr; extension_constructor; module_binding; module_coercion; module_declaration; module_substitution; module_expr; module_type; module_type_declaration; package_type; pat; row_field; object_field; open_declaration; open_description; signature; signature_item; structure; structure_item; typ; type_declaration; type_declarations; type_extension; type_exception; type_kind; value_binding; value_bindings; value_description; with_constraint; }
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>