package odoc
OCaml Documentation Generator
Install
Dune Dependency
Authors
Maintainers
Sources
odoc-3.0.0.tbz
sha256=ce84fa7e0cc5f3e8a54e6adeb10826152798b602057b9e46c5ae7e5d5206812b
sha512=9febd413450ca2e3824c9ef7e1c9ae8d8094aa72ed71327a69d8d6b42f6f197b3f3f40d674de0d11fa1242ee0df95c693b5d74467d530704e1339f3a523452f6
doc/src/odoc.loader/ident_env.ml.html
Source file ident_env.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 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782
# 1 "src/loader/ident_env.cppo.ml" (* * Copyright (c) 2014 Leo White <lpw25@cl.cam.ac.uk> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. *) open Odoc_model open Names module Id = Paths.Identifier module P = Paths.Path module LocHashtbl = Hashtbl.Make(struct type t = Location.t let equal l1 l2 = l1 = l2 let hash = Hashtbl.hash end) type t = { modules : Id.Module.t Ident.tbl; parameters : Id.FunctorParameter.t Ident.tbl; module_paths : P.Module.t Ident.tbl; module_types : Id.ModuleType.t Ident.tbl; types : Id.DataType.t Ident.tbl; exceptions: Id.Exception.t Ident.tbl; extensions: Id.Extension.t Ident.tbl; constructors: Id.Constructor.t Ident.tbl; values: Id.Value.t Ident.tbl; classes : Id.Class.t Ident.tbl; class_types : Id.ClassType.t Ident.tbl; loc_to_ident : Id.t LocHashtbl.t; shadowed : Ident.t list; } let empty () = { modules = Ident.empty; parameters = Ident.empty; module_paths = Ident.empty; module_types = Ident.empty; types = Ident.empty; exceptions = Ident.empty; constructors = Ident.empty; extensions = Ident.empty; values = Ident.empty; classes = Ident.empty; class_types = Ident.empty; loc_to_ident = LocHashtbl.create 100; shadowed = []; } (* The boolean is an override for whether it should be hidden - true only for items introduced by extended open *) type item = [ `Module of Ident.t * bool * Location.t option | `ModuleType of Ident.t * bool * Location.t option | `Type of Ident.t * bool * Location.t option | `Constructor of Ident.t * Ident.t * Location.t option (* Second ident.t is for the type parent *) | `Value of Ident.t * bool * Location.t option | `Class of Ident.t * Ident.t * Ident.t * Ident.t option * bool * Location.t option | `ClassType of Ident.t * Ident.t * Ident.t option * bool * Location.t option | `Exception of Ident.t * Location.t option (* Exceptions needs to be added to the [loc_to_ident] table. *) | `Extension of Ident.t * Location.t option (* Extension constructor also need to be added to the [loc_to_ident] table, since they get an entry in the [uid_to_loc] table. *) ] type items = [ item | `Include of item list ] let extract_visibility = let open Compat in function | Sig_type (_, _, _, vis) | Sig_module (_, _, _, _, vis) | Sig_modtype (_, _, vis) | Sig_value (_, _, vis) | Sig_class (_, _, _, vis) | Sig_class_type (_, _, _, vis) | Sig_typext (_, _, _, vis) -> vis let rec extract_signature_type_items vis items = let open Compat in match items with | item :: rest -> let vis' = extract_visibility item in if vis = vis' then let hidden = vis' = Hidden in extrture_type_items_extract gnavis ~hidden item rest else extract_signature_type_items_skip vis item rest | [] -> [] and extract_signature_type_items_extract vis ~hidden item rest = let open Compatmatch item, rest with | Sig_type(id, td, _, _), _ -> if Btype.is_row_name (Ident.name id) then extract_signature_type_items vis rest else let constrs = match td.type_kind with # 119 "src/loader/ident_env.cppo.ml" | Types.Type_abstract _ -> [] # 121 "src/loader/ident_env.cppo.ml" | Type_record (_, _) -> [] # 125 "src/loader/ident_env.cppo.ml" | Type_variant (cstrs, _) -> # 127 "src/loader/ident_env.cppo.ml" List.map (fun c -> `Constructor (c.Types.cd_id, id, Some c.cd_loc)) cstrs | Type_open -> [] in `Type (id, hidden, None) :: constrs @ extract_signature_type_items vis rest | Sig_module(id, _, _, _, _), _ -> `Module (id, hidden, None) :: extract_signature_type_items vis rest | Sig_modtype(id, _, _), _ -> `ModuleType (id, hidden, None) :: extract_signature_type_items vis rest | Sig_value(id, _, _), _ -> `Value (id, hidden, None) :: extract_signature_type_items vis rest # 152 "src/loader/ident_env.cppo.ml" | Sig_class(id, _, _, _), Sig_class_type(ty_id, _, _, _) :: Sig_type(obj_id, _, _, _) :: _ -> `Class (id, ty_id, obj_id, None, hidden, None) :: extract_signature_type_items vis rest | Sig_class_type(id, _, _, _), Sig_type(obj_id, _, _, _) :: _ -> `ClassType (id, obj_id, None, hidden, None) :: extract_signature_type_items vis rest # 162 "src/loader/ident_env.cppo.ml" | Sig_typext (id, constr, Text_exception, _), _ -> `Exception (id, Some constr.ext_loc) :: extract_signature_type_items vis rest | Sig_typext (id, constr, _, _), _ -> `Extension (id, Some constr.ext_loc) :: extract_signature_type_items vis rest | Sig_class _, _ | Sig_class_type _, _ -> assert false and extract_signature_type_items_skip vis item rest = let open Compat in match item, rest with | Sig_class_type _, Sig_type _ :: Sig_type _ :: rest | Sig_class _, Sig_class_type _ :: Sig_type _ :: Sig_type _ :: rest | Sig_typext _, rest | Sig_modtype _, rest | Sig_module _, rest | Sig_type _, rest | Sig_value _, rest -> extract_signature_type_items vis rest | Sig_class _, _ | Sig_class_type _, _ -> assert false # 190 "src/loader/ident_env.cppo.ml" let extract_extended_open o = let open Typedtree in extract_signature_type_items Hidden (Compat.signature o.open_bound_items) # 196 "src/loader/ident_env.cppo.ml" let rec extract_signature_tree_items : bool -> Typedtree.signature_item list -> items list = fun hide_item items -> let open Typedtree in match items with # 202 "src/loader/ident_env.cppo.ml" | { sig_desc = Tsig_type (_, decls); _} :: rest -> # 204 "src/loader/ident_env.cppo.ml" Odoc_utils.List.concat_map (fun decl -> if Btype.is_row_name (Ident.name decl.typ_id) then [] else `Type (decl.typ_id, hide_item, Some decl.typ_loc) :: match decl.typ_kind with Ttype_abstract -> [] | Ttype_variant constrs -> List.map (fun c -> `Constructor (c.cd_id, decl.typ_id, Some c.cd_loc)) constrs | Ttype_record _ -> [] | Ttype_open -> [] ) decls @ extract_signature_tree_items hide_item rest # 220 "src/loader/ident_env.cppo.ml" | { sig_desc = Tsig_exception { tyexn_constructor; _ }; _ } :: rest -> # 222 "src/loader/ident_env.cppo.ml" `Exception (tyexn_constructor.ext_id, Some tyexn_constructor.ext_loc) :: extract_signature_tree_items hide_item rest | { sig_desc = Tsig_typext { tyext_constructors; _ }; _} :: rest -> let x = List.map (fun { ext_id; ext_loc; _ } -> `Extension (ext_id, Some ext_loc)) tyext_constructors in x @ extract_signature_tree_items hide_item rest # 230 "src/loader/ident_env.cppo.ml" | { sig_desc = Tsig_module { md_id = Some id; _ }; sig_loc; _} :: rest -> [`Module (id, hide_item, Some sig_loc)] @ extract_signature_tree_items hide_item rest | { sig_desc = Tsig_module _; _ } :: rest -> extract_signature_tree_items hide_item rest | { sig_desc = Tsig_recmodule mds; _} :: rest -> List.fold_right ( fun md items -> match md.md_id with | Some id -> `Module (id, hide_item, Some md.md_loc) :: items | None -> items) mds [] @ extract_signature_tree_items hide_item rest # 248 "src/loader/ident_env.cppo.ml" | { sig_desc = Tsig_value {val_id; _}; sig_loc; _ } :: rest-> [`Value (val_id, hide_item, Some sig_loc)] @ extract_signature_tree_items hide_item rest | { sig_desc = Tsig_modtype mtd; sig_loc; _} :: rest -> [`ModuleType (mtd.mtd_id, hide_item, Some sig_loc)] @ extract_signature_tree_items hide_item rest | {sig_desc = Tsig_include incl; _ } :: rest -> [`Include (extract_signature_type_items Exported (Compat.signature incl.incl_type))] @ extract_signature_tree_items hide_item rest | {sig_desc = Tsig_attribute attr; _ } :: rest -> let hide_item = if Doc_attr.is_stop_comment attr then not hide_item else hide_item in extract_signature_tree_items hide_item rest | {sig_desc = Tsig_class cls; _} :: rest -> List.map (fun cld -> let typehash = # 266 "src/loader/ident_env.cppo.ml" None # 268 "src/loader/ident_env.cppo.ml" in `Class (cld.ci_id_class, cld.ci_id_class_type, cld.ci_id_object, typehash, hide_item, Some cld.ci_id_name.loc)) cls @ extract_signature_tree_items hide_item rest | { sig_desc = Tsig_class_type cltyps; _ } :: rest -> List.map (fun clty -> let typehash = # 280 "src/loader/ident_env.cppo.ml" None # 282 "src/loader/ident_env.cppo.ml" in `ClassType (clty.ci_id_class_type, clty.ci_id_object, typehash, hide_item, Some clty.ci_id_name.loc)) cltyps @ extract_signature_tree_items hide_item rest # 287 "src/loader/ident_env.cppo.ml" | { sig_desc = Tsig_modsubst ms; sig_loc; _ } :: rest -> [`Module (ms.ms_id, hide_item, Some sig_loc )] @ extract_signature_tree_items hide_item rest | { sig_desc = Tsig_typesubst ts; sig_loc; _} :: rest -> List.map (fun decl -> `Type (decl.typ_id, hide_item, Some sig_loc)) ts @ extract_signature_tree_items hide_item rest # 294 "src/loader/ident_env.cppo.ml" | { sig_desc = Tsig_modtypesubst mtd; sig_loc; _ } :: rest -> [`ModuleType (mtd.mtd_id, hide_item, Some sig_loc)] @ extract_signature_tree_items hide_item rest # 297 "src/loader/ident_env.cppo.ml" | { sig_desc = Tsig_open _;_} :: rest -> extract_signature_tree_items hide_item rest | [] -> [] let rec read_pattern hide_item pat = let open Typedtree in match pat.pat_desc with # 306 "src/loader/ident_env.cppo.ml" | Tpat_var(id, loc, _) -> # 308 "src/loader/ident_env.cppo.ml" [`Value(id, hide_item, Some loc.loc)] # 312 "src/loader/ident_env.cppo.ml" | Tpat_alias(pat, id, loc, _) -> # 314 "src/loader/ident_env.cppo.ml" `Value(id, hide_item, Some loc.loc) :: read_pattern hide_item pat | Tpat_record(pats, _) -> List.concat (List.map (fun (_, _, pat) -> read_pattern hide_item pat) pats) # 320 "src/loader/ident_env.cppo.ml" | Tpat_construct(_, _, pats, _) # 322 "src/loader/ident_env.cppo.ml" | Tpat_array pats | Tpat_tuple pats -> List.concat (List.map (fun pat -> read_pattern hide_item pat) pats) | Tpat_or(pat, _, _) | Tpat_variant(_, Some pat, _) | Tpat_lazy pat -> read_pattern hide_item pat | Tpat_any | Tpat_constant _ | Tpat_variant(_, None, _) -> [] # 332 "src/loader/ident_env.cppo.ml" let rec extract_structure_tree_items : bool -> Typedtree.structure_item list -> items list = fun hide_item items -> let open Typedtree in match items with # 338 "src/loader/ident_env.cppo.ml" | { str_desc = Tstr_type (_, decls); _ } :: rest -> (* TODO: handle rec_flag *) # 340 "src/loader/ident_env.cppo.ml" Odoc_utils.List.concat_map (fun decl -> `Type (decl.typ_id, hide_item, Some decl.typ_loc) :: (match decl.typ_kind with Ttype_abstract -> [] | Ttype_variant constrs -> List.map (fun c -> `Constructor (c.cd_id, decl.typ_id, Some c.cd_loc)) constrs | Ttype_record _ -> [] | Ttype_open -> [] )) decls @ extract_structure_tree_items hide_item rest # 353 "src/loader/ident_env.cppo.ml" | { str_desc = Tstr_exception { tyexn_constructor; _ }; _ } :: rest -> # 355 "src/loader/ident_env.cppo.ml" `Exception (tyexn_constructor.ext_id, Some tyexn_constructor.ext_loc) :: extract_structure_tree_items hide_item rest | { str_desc = Tstr_typext { tyext_constructors; _ }; _} :: rest -> let x = List.map (fun { ext_id; ext_loc; _ } -> `Extension (ext_id, Some ext_loc)) tyext_constructors in x @ extract_structure_tree_items hide_item rest # 364 "src/loader/ident_env.cppo.ml" | { str_desc = Tstr_value (_, vbs); _ } :: rest -> (*TODO: handle rec_flag *) # 366 "src/loader/ident_env.cppo.ml" ( List.map (fun vb -> read_pattern hide_item vb.vb_pat) vbs |> List.flatten) @ extract_structure_tree_items hide_item rest # 370 "src/loader/ident_env.cppo.ml" | { str_desc = Tstr_module { mb_id = Some id; mb_loc; _}; _} :: rest -> [`Module (id, hide_item, Some mb_loc)] @ extract_structure_tree_items hide_item rest | { str_desc = Tstr_module _; _} :: rest -> extract_structure_tree_items hide_item rest | { str_desc = Tstr_recmodule mbs; _ } :: rest -> List.fold_right (fun mb items -> match mb.mb_id with | Some id -> `Module (id, hide_item, Some mb.mb_loc) :: items | None -> items) mbs [] @ extract_structure_tree_items hide_item rest # 386 "src/loader/ident_env.cppo.ml" | { str_desc = Tstr_modtype mtd; str_loc; _} :: rest -> [`ModuleType (mtd.mtd_id, hide_item, Some str_loc)] @ extract_structure_tree_items hide_item rest | { str_desc = Tstr_include incl; _ } :: rest -> [`Include (extract_signature_type_items Exported (Compat.signature incl.incl_type))] @ extract_structure_tree_items hide_item rest | { str_desc = Tstr_attribute attr; _} :: rest -> let hide_item = if Doc_attr.is_stop_comment attr then not hide_item else hide_item in extract_structure_tree_items hide_item rest | { str_desc = Tstr_class cls; _ } :: rest -> List.map # 398 "src/loader/ident_env.cppo.ml" (fun (cld, _) -> # 400 "src/loader/ident_env.cppo.ml" `Class (cld.ci_id_class, cld.ci_id_class_type, cld.ci_id_object, # 407 "src/loader/ident_env.cppo.ml" None, # 409 "src/loader/ident_env.cppo.ml" hide_item, Some cld.ci_id_name.loc )) cls @ extract_structure_tree_items hide_item rest | {str_desc = Tstr_class_type cltyps; _ } :: rest -> List.map (fun (_, _, clty) -> `ClassType (clty.ci_id_class_type, clty.ci_id_object, # 421 "src/loader/ident_env.cppo.ml" None, # 423 "src/loader/ident_env.cppo.ml" hide_item, Some clty.ci_id_name.loc )) cltyps @ extract_structure_tree_items hide_item rest # 428 "src/loader/ident_env.cppo.ml" | { str_desc = Tstr_open o; _ } :: rest -> ((extract_extended_open o) :> items list) @ extract_structure_tree_items hide_item rest # 431 "src/loader/ident_env.cppo.ml" | { str_desc = Tstr_primitive {val_id; _}; str_loc; _ } :: rest -> [`Value (val_id, false, Some str_loc)] @ extract_structure_tree_items hide_item rest | { str_desc = Tstr_eval _; _} :: rest -> extract_structure_tree_items hide_item rest | [] -> [] let flatten_includes : items list -> item list = fun items -> List.map (function | `Type _ | `Constructor _ | `Module _ | `ModuleType _ | `Value _ | `Class _ | `Exception _ | `Extension _ | `ClassType _ as x -> [x] | `Include xs -> xs) items |> List.flatten let type_name_exists name items = List.exists (function | `Type (id', _, _) when Ident.name id' = name -> true | _ -> false) items let value_name_exists name items = List.exists (function | `Value (id', _, _) when Ident.name id' = name -> true | _ -> false) items let module_name_exists name items = List.exists (function | `Module (id', _, _) when Ident.name id' = name -> true | _ -> false) items let module_type_name_exists name items = List.exists (function | `ModuleType (id', _, _) when Ident.name id' = name -> true | _ -> false) items let class_name_exists name items = List.exists (function | `Class (id',_,_,_,_,_) when Ident.name id' = name -> true | _ -> false) items let class_type_name_exists name items = List.exists (function | `ClassType (id',_,_,_,_) when Ident.name id' = name -> true | _ -> false) items let add_items : Id.Signature.t -> item list -> t -> t = fun parent items env -> let open Odoc_model.Paths.Identifier in let rec inner items env = match items with | `Type (t, is_hidden_item, loc) :: rest -> let name = Ident.name t in let is_shadowed = type_name_exists name rest in let identifier, shadowed = if is_shadowed then Mk.type_(parent, TypeName.shadowed_of_string name), t :: env.shadowed else Mk.type_(parent, (if is_hidden_item then TypeName.hidden_of_string else TypeName.make_std) name), env.shadowed in let types = Ident.add t identifier env.types in (match loc with | Some l -> LocHashtbl.add env.loc_to_ident l (identifier :> Id.any) | _ -> ()); inner rest { env with types; shadowed } | `Constructor (t, t_parent, loc) :: rest -> let name = Ident.name t in let identifier = let parent = Ident.find_same t_parent env.types in Mk.constructor(parent, ConstructorName.make_std name) in let constructors = Ident.add t identifier env.constructors in (match loc with | Some l -> LocHashtbl.add env.loc_to_ident l (identifier :> Id.any) | _ -> ()); inner rest { env with constructors } | `Exception (t, loc) :: rest -> let name = Ident.name t in let identifier = Mk.exception_(parent, ExceptionName.make_std name) in (match loc with | Some l -> LocHashtbl.add env.loc_to_ident l (identifier :> Id.any) | _ -> ()); let exceptions = Ident.add t identifier env.exceptions in inner rest {env with exceptions } | `Extension (t, loc) :: rest -> let name = Ident.name t in let identifier = Mk.extension(parent, ExtensionName.make_std name) in (match loc with | Some l -> LocHashtbl.add env.loc_to_ident l (identifier :> Id.any) | _ -> ()); let extensions = Ident.add t identifier env.extensions in inner rest {env with extensions } | `Value (t, is_hidden_item, loc) :: rest -> let name = Ident.name t in let is_shadowed = value_name_exists name rest in let identifier, shadowed = if is_shadowed then Mk.value(parent, ValueName.shadowed_of_string name), t ed else Mk.value(parent, (if is_hidden_item then ValueName.hidden_of_string else ValueName.make_std) name), env.shadowed in let values = Ident.add t identifier env.values in (match loc with | Some l -> LocHashtbl.add env.loc_to_ident l (identifier :> Id.any) | _ -> ()); inner rest { env with values; shadowed } | `ModuleType (t, is_hidden_item, loc) :: rest -> let name = Ident.name t in let is_shadowed = module_type_name_exists name rest in let identifier, shadowed = if is_shadowed then Mk.module_type(parent, ModuleTypeName.shadowed_of_string name), t :: env.shadowed else Mk.module_type(parent,(if is_hidden_item then ModuleTypeName.hidden_of_string else ModuleTypeName.make_std) name), env.shadowed in let module_types = Ident.add t identifier env.module_types in (match loc with | Some l -> LocHashtbl.add env.loc_to_ident l (identifier :> Id.any) | _ -> ()); inner rest { env with module_types; shadowed } | `Module (t, is_hidden_item, loc) :: rest -> let name = Ident.name t in let is_shadowed = module_name_exists name rest in let identifier, shadowed = if is_shadowed then Mk.module_(parent, ModuleName.shadowed_of_string name), t :: env.shadowed else Mk.module_(parent, (if is_hidden_item then ModuleName.hidden_of_string else ModuleName.make_std) name), env.shadowed in let path = `Identifier(identifier, is_hidden_item || is_shadowed) in let modules = Ident.add t identifier env.modules in let module_paths = Ident.add t path env.module_paths in (match loc with | Some l -> LocHashtbl.add env.loc_to_ident l (identifier :> Id.any) | _ -> ()); inner rest { es; module_paths; shadowed } | `Class (t,t2,t3,t4, is_hidden_item, loc) :: rest -> let name = Ident.name t in let is_shadowed = class_name_exists name rest in let class_types = match t4 with | None -> [t;t2;t3] | Some t4 -> [t;t2;t3;t4] in let identifier, shadowed = if is_shadowed then Mk.class_(parent, TypeName.shadowed_of_string name), class_types @ env.shadowed else Mk.class_(parent, (if is_hidden_item then TypeName.hidden_of_string else TypeName.make_std) name), env.shadowed in let classes = List.fold_ri (fun id classes -> Ident.add id identifier classes) class_types env.classes in (match loc with | Some l -> LocHashtbl.add env.loc_to_ident l (identifier :> Id.any) | _ -> ()); inner rest { env with classes; shadowed } | `ClassType (t,t2,t3, is_hidden_item, loc) :: rest -> let name = Ident.name t in let is_shadowed = class_type_name_exists name rest in let class_types = match t3 with | None -> [t;t2] | Some t3 -> [t;t2;t3] in let identifier, shadowed = if is_shadowed then Mk.class_type(parent, TypeName.shadowed_of_string name), class_types @ env.shadowed type(parent, (if is_hidden_item then TypeName.hidden_of_string else TypeName.make_std) name), env.shadowed in let class_types = List.fold_right (fun id class_types -> Ident.add id identifier class_types) class_types env.class_types in (match loc with | Some l -> LocHashtbl.add env.loc_to_ident l (identifier :> Id.any) | _ -> ()); inner rest { env with class_types; shadowed } | [] -> env in inner items env let identifier_of_loc : t -> Location.t -> Odoc_model.Paths.Identifier.t option = fun env loc -> try Some (LocHashtbl.find env.loc_to_ident loc) with Not_found -> None let iter_located_identifier : t -> (Location.t -> Odoc_model.Paths.Identifier.t -> unit) -> unit = fun env f -> LocHashtbl.iter f env.loc_to_id ignature_tree_items : Paths.Identifier.Signature.t -> Typedtree.signature -> t -> t = fun parent sg env -> let items = extract_signature_tree_items false sg.sig_items |> flatten_includes in add_items parent items env let add_structure_tree_items : Paths.Identifier.Signature.t -> Typedtree.structure -> t -> t = fun parent sg env -> let items = extract_structure_tree_items false sg.str_items |> flatten_includes in add_items parent items env let handle_signature_type_items : Paths.Identifier.Signature.t -> Compat.signature -> t -> t = fun parent sg env -> let items = extract_signature_type_items Exported sg in add_items parent items env let add_parameter parent id name env = let hidden = ModuleName.is_hidden name in let oid = Odoc_model.Paths.Identifier.Mk.parameter(parent, name h = `Identifier (oid, hidden) in let module_paths = Ident.add id path env.module_paths in let modules = Ident.add id oid env.modules in let parameters = Ident.add id oid env.parameters in { env with module_paths; modules; parameters } let find_module env id = Ident.find_same id env.module_paths let find_module_identifier env id = Ident.find_same id env.modules let find_parameter_identifier env id = Ident.find_same id env.parameters let find_module_type env id = Ident.find_same id env.module_types let find_type_identifier env id = Ident.find_same id env.types let find_constructor_identifier env id = Ident.find_same id env.constructors let find_exception_identifier env id = Ident.find_same id env.exceptions let find_extension_identifier env id = Ident.find_same id env.extensions let find_value_identifier env id = Ident.find_same id env.values (** Lookup a type in the environment. If it isn't found, it means it's a core type. *) let find_type env id = try Some (Ident.find_same id env.types :> Id.Path.Type.t) with Not_found -> ( try Some (Ident.find_same id env.classes :> Id.Path.Type.t) with Not_found -> ( try Some (Ident.find_same id env.class_types :> Id.Path.Type.t) with Not_found -> None)) let find_class_type env id = try (Ident.find_same id env.classes :> Id.Path.ClassType.t) with Not_found -> (Ident.find_same id env.class_types :> Id.Path.ClassType.t) let find_class_identifier env id = Ident.find_same id env.classes let find_class_type_identifier env id = Ident.find_same id env.class_types let is_shadowed env id = List.mem id env.shadowed module Path = struct let read_module_ident env id = if Ident.persistent id then `Root (ModuleName.of_ident id) else try find_module env id with Not_found -> assert false let read_module_type_ident env id = try Identifier (find_module_type env id, false) with Not_found -> assert false let read_type_ident env id = match find_type env id with | Some id -> `Identifier (id , false) | None -> `Resolved (`CoreType (TypeName.of_ident id)) let read_value_ident env id : Paths.Path.Value.t = `Identifier (find_value_identifier env id, false) let read_class_type_ident env id : Paths.Path.ClassType.t = try `Identifier (find_class_type env id, false) with Not_found -> `DotT (`Root (ModuleName.make_std "*"), (TypeName.of_ident id)) (* TODO remove this hack once the fix for PR#6650 is in the OCaml release *) (* When a type is a classtype path (with a #), the # is stripped off because each ident is mapped to the identifier named for the ident without a hash. e.g. in the following, we take the name of the identifier from cd_id_class, and therefore even [Pident #u/10] will map to identifier [u]. Typedtree.Tsig_class_type [{Typedtree.ci_virt = Asttypes.Concrete; ci_params = []; ci_id_name = {Asttypes.txt = ...; loc = ...}; ci_id_class = u/13[14]; ci_id_class_type = u/12[14]; ci_id_object = u/11[14]; ci_id_typehash = #u/10[14]; For a dotted path though, we have to strip the # off manually here, so [read_class_type] and [read_type] both need the following function. *) let strip_hash s = if s.[0]='#' then String.sub s 1 (String.length s - 1) else s let rec read_module : t -> Path.t -> Paths.Path.Module.t = fun env -> function | Path.Pident id -> read_module_ident env id # 720 "src/loader/ident_env.cppo.ml" | Path.Pdot(p, s) -> `Dot(read_module env p, ModuleName.make_std s) # 724 "src/loader/ident_env.cppo.ml" | Path.Papply(p, arg) -> `Apply(read_module env p, read_module env arg) # 726 "src/loader/ident_env.cppo.ml" | Path.Pextra_ty _ -> assert false # 729 "src/loader/ident_env.cppo.ml" let read_module_type env = function | Path.Pident id -> read_module_type_ident env id # 732 "src/loader/ident_env.cppo.ml" | Path.Pdot(p, s) -> `DotMT(read_module env p, ModuleTypeName.make_std s) # 736 "src/loader/ident_env.cppo.ml" | Path.Papply(_, _)-> assert false # 738 "src/loader/ident_env.cppo.ml" | Path.Pextra_ty _ -> assert false # 741 "src/loader/ident_env.cppo.ml" let read_class_type env = function | Path.Pident id -> read_class_type_ident env id # 744 "src/loader/ident_env.cppo.ml" | Path.Pdot(p, s) -> `DotT(read_module env p, TypeName.make_std (strip_hash s)) # 748 "src/loader/ident_env.cppo.ml" | Path.Papply(_, _)-> assert false # 750 "src/loader/ident_env.cppo.ml" | Path.Pextra_ty _ -> assert false # 756 "src/loader/ident_env.cppo.ml" let rec read_type env = function # 758 "src/loader/ident_env.cppo.ml" | Path.Pident id -> read_type_ident env id # 760 "src/loader/ident_env.cppo.ml" | Path.Pdot(p, s) -> `DotT(read_module env p, TypeName.make_std (strip_hash s)) # 764 "src/loader/ident_env.cppo.ml" | Path.Papply(_, _)-> assert false # 766 "src/loader/ident_env.cppo.ml" | Path.Pextra_ty (p,_) -> read_type env p # 769 "src/loader/ident_env.cppo.ml" let read_value env = function | Path.Pident id -> read_value_ident env id # 772 "src/loader/ident_env.cppo.ml" | Path.Pdot(p, s) -> `DotV(read_module env p, ValueName.make_std s) # 776 "src/loader/ident_env.cppo.ml" | Path.Papply(_, _) -> assert false # 778 "src/loader/ident_env.cppo.ml" | Path.Pextra_ty _ -> assert false # 781 "src/loader/ident_env.cppo.ml" end module Fragment = struct let rec read_module : Longident.t -> Paths.Fragment.Module.t = function | Longident.Lident s -> `Dot(`Root, s) | Longident.Ldot(p, s) -> `Dot((read_module p :> Paths.Fragment.Signature.t), s) | Longident.Lapply _ -> assert false let read_module_type : Longident.t -> Paths.Fragment.ModuleType.t = function | Longident.Lident s -> `Dot(`Root, s) | Longident.Ldot(p, s) -> `Dot((read_module p :> Paths.Fragment.Signature.t), s) | Longident.Lapply _ -> assert false let read_type = function | Longident.Lident s -> `Dot(`Root, s) | Longident.Ldot(p, s) -> `Dot((read_module p :> Paths.Fragment.Signature.t), s) | Longident.Lapply _ -> assert false end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>