package odoc
OCaml Documentation Generator
Install
Dune Dependency
Authors
Maintainers
Sources
odoc-3.0.0.tbz
sha256=ce84fa7e0cc5f3e8a54e6adeb10826152798b602057b9e46c5ae7e5d5206812b
sha512=9febd413450ca2e3824c9ef7e1c9ae8d8094aa72ed71327a69d8d6b42f6f197b3f3f40d674de0d11fa1242ee0df95c693b5d74467d530704e1339f3a523452f6
doc/src/odoc.xref2/cpath.ml.html
Source file cpath.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
open Odoc_model.Paths open Odoc_model.Names module rec Resolved : sig type parent = [ `Module of module_ | `ModuleType of module_type | `FragmentRoot ] and module_ = [ `Local of Ident.module_ | `Gpath of Path.Resolved.Module.t | `Substituted of module_ | `Subst of module_type * module_ | `Hidden of module_ | `Module of parent * ModuleName.t | `Canonical of module_ * Path.Module.t | `Apply of module_ * module_ | `Alias of module_ * Cpath.module_ * module_ option | `OpaqueModule of module_ ] and module_type = [ `Local of Ident.module_type | `Substituted of module_type | `Gpath of Path.Resolved.ModuleType.t | `ModuleType of parent * ModuleTypeName.t | `SubstT of module_type * module_type | `AliasModuleType of module_type * module_type | `CanonicalModuleType of module_type * Path.ModuleType.t | `OpaqueModuleType of module_type ] and type_ = [ `Local of Ident.type_ | `Gpath of Path.Resolved.Type.t | `Substituted of type_ | `CanonicalType of type_ * Path.Type.t | `CoreType of TypeName.t | `Type of parent * TypeName.t | `Class of parent * TypeName.t | `ClassType of parent * TypeName.t ] and value = [ `Value of parent * ValueName.t | `Gpath of Path.Resolved.Value.t ] and class_type = [ `Local of Ident.type_ | `Substituted of class_type | `Gpath of Path.Resolved.ClassType.t | `Class of parent * TypeName.t | `ClassType of parent * TypeName.t ] end = Resolved and Cpath : sig type module_ = [ `Resolved of Resolved.module_ | `Substituted of module_ | `Local of Ident.module_ * bool | `Identifier of Identifier.Path.Module.t * bool | `Root of ModuleName.t | `Forward of string | `Dot of module_ * ModuleName.t | `Module of Resolved.parent * ModuleName.t (* Like dot, but typed *) | `Apply of module_ * module_ ] and module_type = [ `Resolved of Resolved.module_type | `Substituted of module_type | `Local of Ident.module_type * bool | `Identifier of Identifier.ModuleType.t * bool | `DotMT of module_ * ModuleTypeName.t | `ModuleType of Resolved.parent * ModuleTypeName.t ] and type_ = [ `Resolved of Resolved.type_ | `Substituted of type_ | `Local of Ident.type_ * bool | `Identifier of Odoc_model.Paths.Identifier.Path.Type.t * bool | `DotT of module_ * TypeName.t | `Type of Resolved.parent * TypeName.t | `Class of Resolved.parent * TypeName.t | `ClassType of Resolved.parent * TypeName.t ] and value = [ `Resolved of Resolved.value | `DotV of module_ * ValueName.t | `Value of Resolved.parent * ValueName.t | `Identifier of Identifier.Value.t * bool ] and class_type = [ `Resolved of Resolved.class_type | `Substituted of class_type | `Local of Ident.type_ * bool | `Identifier of Odoc_model.Paths.Identifier.Path.ClassType.t * bool | `DotT of module_ * TypeName.t | `Class of Resolved.parent * TypeName.t | `ClassType of Resolved.parent * TypeName.t ] end = Cpath include Cpath let rec is_resolved_module_substituted : Resolved.module_ -> bool = function | `Local _ -> false | `Substituted _ -> true | `Gpath _ -> false | `Subst (_a, _) -> false (* is_resolved_module_type_substituted a*) | `Hidden a | `Apply (a, _) | `Alias (a, _, _) | `Canonical (a, _) -> is_resolved_module_substituted a | `Module (a, _) -> is_resolved_parent_substituted a | `OpaqueModule a -> is_resolved_module_substituted a and is_resolved_parent_substituted = function | `Module m -> is_resolved_module_substituted m | `ModuleType m -> is_resolved_module_type_substituted m | `FragmentRoot -> false and is_resolved_module_type_substituted : Resolved.module_type -> bool = function | `Local _ -> false | `Substituted _ -> true | `Gpath _ -> false | `ModuleType (a, _) -> is_resolved_parent_substituted a | `SubstT _ -> false | `AliasModuleType (m1, _) -> is_resolved_module_type_substituted m1 | `CanonicalModuleType (m, _) | `OpaqueModuleType m -> is_resolved_module_type_substituted m and is_resolved_type_substituted : Resolved.type_ -> bool = function | `Local _ -> false | `CoreType _ -> false | `Substituted _ -> true | `Gpath _ -> false | `CanonicalType (t, _) -> is_resolved_type_substituted t | `Type (a, _) | `Class (a, _) | `ClassType (a, _) -> is_resolved_parent_substituted a and is_resolved_class_type_substituted : Resolved.class_type -> bool = function | `Local _ -> false | `Substituted _ -> true | `Gpath _ -> false | `Class (a, _) | `ClassType (a, _) -> is_resolved_parent_substituted a let rec is_module_substituted : module_ -> bool = function | `Resolved a -> is_resolved_module_substituted a | `Identifier _ -> false | `Local _ -> false | `Substituted _ -> true | `Dot (a, _) | `Apply (a, _) -> is_module_substituted a | `Forward _ -> false | `Root _ -> false | `Module (a, _) -> is_resolved_parent_substituted a let is_module_type_substituted : module_type -> bool = function | `Resolved a -> is_resolved_module_type_substituted a | `Identifier _ -> false | `Local _ -> false | `Substituted _ -> true | `DotMT (a, _) -> is_module_substituted a | `ModuleType (a, _) -> is_resolved_parent_substituted a let is_type_substituted : type_ -> bool = function | `Resolved a -> is_resolved_type_substituted a | `Identifier _ -> false | `Local _ -> false | `Substituted _ -> true | `DotT (a, _) -> is_module_substituted a | `Type (a, _) | `Class (a, _) | `ClassType (a, _) -> is_resolved_parent_substituted a let is_class_type_substituted : class_type -> bool = function | `Resolved a -> is_resolved_class_type_substituted a | `Identifier _ -> false | `Local _ -> false | `Substituted _ -> true | `DotT (a, _) -> is_module_substituted a | `Class (a, _) | `ClassType (a, _) -> is_resolved_parent_substituted a let rec is_module_forward : module_ -> bool = function | `Forward _ -> true | `Resolved _ -> false | `Root _ -> false | `Identifier _ -> false | `Local _ -> false | `Substituted p | `Dot (p, _) | `Apply (p, _) -> is_module_forward p | `Module (_, _) -> false let rec : module_ -> bool = function | `Resolved r -> is_resolved_module_hidden ~weak_canonical_test:false r | `Substituted p | `Dot (p, _) | `Apply (p, _) -> is_module_hidden p | `Identifier (_, b) -> b | `Local (_, b) -> b | `Forward _ -> false | `Root _ -> false | `Module (p, _) -> is_resolved_parent_hidden ~weak_canonical_test:false p and : weak_canonical_test:bool -> Resolved.module_ -> bool = fun ~weak_canonical_test -> let rec inner = function | `Local _ -> false | `Gpath p -> Odoc_model.Paths.Path.Resolved.Module.is_hidden ~weak_canonical_test p | `Hidden _ -> true | `Canonical (_, `Resolved _) -> false | `Canonical (p, _) -> (not weak_canonical_test) && inner p | `Substituted p -> inner p | `Module (p, _) -> is_resolved_parent_hidden ~weak_canonical_test p | `Subst (p1, p2) -> is_resolved_module_type_hidden p1 || inner p2 | `Alias (p1, `Resolved p2, _) -> inner p1 && inner p2 | `Alias (p1, _p2, _) -> inner p1 | `Apply (p1, p2) -> inner p1 || inner p2 | `OpaqueModule m -> inner m in inner and : weak_canonical_test:bool -> Resolved.parent -> bool = fun ~weak_canonical_test -> function | `Module m -> is_resolved_module_hidden ~weak_canonical_test m | `ModuleType m -> is_resolved_module_type_hidden m | `FragmentRoot -> false and : module_type -> bool = function | `Resolved r -> is_resolved_module_type_hidden r | `Identifier ({ iv = `ModuleType (_, t); _ }, b) -> b || ModuleTypeName.is_hidden t | `Local (_, b) -> b | `Substituted p -> is_module_type_hidden p | `DotMT (p, _) -> is_module_hidden p | `ModuleType (p, _) -> is_resolved_parent_hidden ~weak_canonical_test:false p and : Resolved.module_type -> bool = function | `Local _ -> false | `Gpath p -> Odoc_model.Paths.Path.Resolved.(is_hidden (p :> t)) | `Substituted p -> is_resolved_module_type_hidden p | `ModuleType (p, _) -> is_resolved_parent_hidden ~weak_canonical_test:false p | `SubstT (p1, p2) -> is_resolved_module_type_hidden p1 || is_resolved_module_type_hidden p2 | `AliasModuleType (p1, p2) -> is_resolved_module_type_hidden p1 || is_resolved_module_type_hidden p2 | `CanonicalModuleType (_, `Resolved _) -> false | `CanonicalModuleType (p, _) -> is_resolved_module_type_hidden p | `OpaqueModuleType m -> is_resolved_module_type_substituted m and : type_ -> bool = function | `Resolved r -> is_resolved_type_hidden r | `Identifier ({ iv = `Type (_, t); _ }, b) -> b || TypeName.is_hidden t | `Identifier ({ iv = `ClassType (_, t); _ }, b) -> b || TypeName.is_hidden t | `Identifier ({ iv = `Class (_, t); _ }, b) -> b || TypeName.is_hidden t | `Local (_, b) -> b | `Substituted p -> is_type_hidden (p :> type_) | `DotT (p, _) -> is_module_hidden p | `Type (p, _) | `Class (p, _) | `ClassType (p, _) -> is_resolved_parent_hidden ~weak_canonical_test:false p and : Resolved.type_ -> bool = function | `CoreType n -> TypeName.is_hidden n | `Local _ -> false | `Gpath p -> Odoc_model.Paths.Path.Resolved.(is_hidden (p :> t)) | `Substituted p -> is_resolved_type_hidden p | `CanonicalType (_, `Resolved _) -> false | `CanonicalType (p, _) -> is_resolved_type_hidden p | `Type (p, _) | `Class (p, _) | `ClassType (p, _) -> is_resolved_parent_hidden ~weak_canonical_test:false p and : Resolved.class_type -> bool = function | `Local _ -> false | `Gpath p -> Odoc_model.Paths.Path.Resolved.(is_hidden (p :> t)) | `Substituted p -> is_resolved_class_type_hidden p | `Class (p, _) | `ClassType (p, _) -> is_resolved_parent_hidden ~weak_canonical_test:false p and : class_type -> bool = function | `Resolved r -> is_resolved_class_type_hidden r | `Identifier (_, b) -> b | `Local (_, b) -> b | `Substituted p -> is_class_type_hidden p | `DotT (p, _) -> is_module_hidden p | `Class (p, _) | `ClassType (p, _) -> is_resolved_parent_hidden ~weak_canonical_test:false p let rec resolved_module_of_resolved_module_reference : Reference.Resolved.Module.t -> Resolved.module_ = function | `Module (parent, name) -> `Module (`Module (resolved_module_of_resolved_signature_reference parent), name) | `Identifier x -> `Gpath (`Identifier x) | `Alias (_m1, _m2) -> failwith "gah" | `Hidden s -> `Hidden (resolved_module_of_resolved_module_reference s) and resolved_module_of_resolved_signature_reference : Reference.Resolved.Signature.t -> Resolved.module_ = function | `Identifier ({ iv = #Identifier.Module.t_pv; _ } as i) -> `Gpath (`Identifier i) | (`Alias _ | `Module _ | `Hidden _) as r' -> resolved_module_of_resolved_module_reference r' | `ModuleType (_, n) -> failwith ("Not a module reference: " ^ ModuleTypeName.to_string n) | `AliasModuleType _ -> failwith "Not a module reference: aliasmoduletype" | `Identifier _ -> failwith "Not a module reference : identifier" and module_of_module_reference : Reference.Module.t -> module_ = function | `Resolved r -> `Resolved (resolved_module_of_resolved_module_reference r) | `Root (_, _) -> failwith "unhandled" | `Dot ( (( `Resolved (`Identifier { iv = #Identifier.Module.t_pv; _ }) | `Dot (_, _) | `Module (_, _) ) as parent), name ) -> `Dot (module_of_module_reference parent, ModuleName.make_std name) | `Module ( (( `Resolved (`Identifier { iv = #Identifier.Module.t_pv; _ }) | `Dot (_, _) | `Module (_, _) ) as parent), name ) -> `Dot (module_of_module_reference parent, name) | _ -> failwith "Not a module reference" let rec unresolve_resolved_module_path : Resolved.module_ -> module_ = function | `Hidden (`Gpath (`Identifier x)) -> `Identifier (x, true) | `Gpath (`Identifier x) -> let = match x.iv with | `Module (_, n) -> Odoc_model.Names.ModuleName.is_hidden n | _ -> false in `Identifier (x, hidden) | `Gpath _ as x -> `Resolved x | `Hidden (`Local x) -> `Local (x, true) | `Local x -> `Local (x, false) | `Substituted x -> unresolve_resolved_module_path x | `Subst (_, x) -> unresolve_resolved_module_path x | `Hidden x -> unresolve_resolved_module_path x (* should assert false here *) | `Module (p, m) -> `Dot (unresolve_resolved_parent_path p, m) | `Canonical (m, _) -> unresolve_resolved_module_path m | `Apply (m, a) -> `Apply (unresolve_resolved_module_path m, unresolve_resolved_module_path a) | `Alias (_, `Resolved m, _) -> unresolve_resolved_module_path m | `Alias (_, m, _) -> m | `OpaqueModule m -> unresolve_resolved_module_path m and unresolve_module_path : module_ -> module_ = function | `Resolved x -> unresolve_resolved_module_path x | `Substituted x -> unresolve_module_path x | `Local (_, _) as x -> x | `Identifier _ as x -> x | `Root _ as x -> x | `Forward _ as x -> x | `Dot (p, x) -> `Dot (unresolve_module_path p, x) | `Module (p, x) -> `Dot (unresolve_resolved_parent_path p, x) | `Apply (x, y) -> `Apply (unresolve_module_path x, unresolve_module_path y) and unresolve_resolved_module_type_path : Resolved.module_type -> module_type = function | (`Local _ | `Gpath _) as p -> `Resolved p | `Substituted x -> unresolve_resolved_module_type_path x | `ModuleType (p, n) -> `DotMT (unresolve_resolved_parent_path p, n) | `SubstT (_, m) -> unresolve_resolved_module_type_path m | `AliasModuleType (_, m2) -> unresolve_resolved_module_type_path m2 | `CanonicalModuleType (p, _) -> unresolve_resolved_module_type_path p | `OpaqueModuleType m -> unresolve_resolved_module_type_path m and unresolve_resolved_parent_path : Resolved.parent -> module_ = function | `Module m -> unresolve_resolved_module_path m | `FragmentRoot | `ModuleType _ -> assert false and unresolve_resolved_type_path : Resolved.type_ -> type_ = function | (`Gpath _ | `Local _ | `CoreType _) as p -> `Resolved p | `Substituted x -> unresolve_resolved_type_path x | `CanonicalType (t1, _) -> unresolve_resolved_type_path t1 | `Type (p, n) -> `DotT (unresolve_resolved_parent_path p, n) | `Class (p, n) -> `DotT (unresolve_resolved_parent_path p, n) | `ClassType (p, n) -> `DotT (unresolve_resolved_parent_path p, n) and unresolve_resolved_class_type_path : Resolved.class_type -> class_type = function | (`Local _ | `Gpath _) as p -> `Resolved p | `Substituted x -> unresolve_resolved_class_type_path x | `Class (p, n) -> `DotT (unresolve_resolved_parent_path p, n) | `ClassType (p, n) -> `DotT (unresolve_resolved_parent_path p, n) and unresolve_module_type_path : module_type -> module_type = function | `Resolved m -> unresolve_resolved_module_type_path m | y -> y and unresolve_type_path : type_ -> type_ = function | `Resolved m -> (unresolve_resolved_type_path m :> type_) | y -> y and unresolve_class_type_path : class_type -> class_type = function | `Resolved m -> unresolve_resolved_class_type_path m | y -> y (* These are left here for later. The idea is to alter a resolved path such that all the identifiers in it are turned into fully-qualified resolved paths. This is intended to be used to turn the 'original path' of `module type of` expressions that was resolved in the original context into a path that is valid in _all_ contexts. let rec original_path_cpath : module_ -> module_ option = function | `Resolved p -> original_path_cpath (unresolve_resolved_module_path p) | `Root name -> Some (`Root name) | `Forward _ -> None | `Dot (p, s) -> ( match original_path_cpath p with | Some p -> Some (`Dot (p, s)) | None -> None) | `Apply (p1, p2) -> ( match (original_path_cpath p1, original_path_cpath p2) with | Some p1', Some p2' -> Some (`Apply (p1', p2')) | _ -> None) | `Identifier (i, _) -> ( match original_path_module_identifier i with | Some i -> Some (`Resolved i) | None -> None) | `Substituted p -> original_path_cpath p | `Local _ -> None | `Module _ -> None and original_path_module_identifier : Odoc_model.Paths.Identifier.Path.Module.t -> Resolved.module_ option = fun id -> match id.iv with | `Module (sg, name) -> ( match original_path_parent_identifier sg with | Some sg' -> Some (`Module (sg', name)) | None -> None) | `Root _ -> Some (`Gpath (`Identifier id)) | _ -> None and original_path_parent_identifier : Odoc_model.Paths.Identifier.Signature.t -> Resolved.parent option = fun id -> match id with | { iv = `Module _ | `Root _ | `Parameter _ | `Result _; _ } as mid -> ( match original_path_module_identifier mid with | Some m -> Some (`Module m) | None -> None) | { iv = `ModuleType _; _ } as mtid -> ( match original_path_module_type_identifier mtid with | Some m -> Some (`ModuleType m) | None -> None) and original_path_module_type_identifier : Odoc_model.Paths.Identifier.ModuleType.t -> Resolved.module_type option = fun id -> match id.iv with | `ModuleType (sg, name) -> ( match original_path_parent_identifier sg with | Some sg' -> Some (`ModuleType (sg', name)) | None -> None) *)
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>