package odoc
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
OCaml documentation generator
Install
dune-project
Dependency
Authors
Maintainers
Sources
odoc-2.1.1.tbz
sha256=f574dbd28cd0fc3a2b95525c4bb95ddf6d1f6408bb4fe12157fa537884f987fd
sha512=1c545c281a7022a167f028fff8cec6fb3f2f82da0881431be74e7a4281c5353ed83bfbdb4d9d9e08af6755dbe3505c052c5e5b58cdeb08c57aed5e89c0f15e91
doc/src/odoc.xref2/errors.ml.html
Source file errors.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 348open Odoc_model module Tools_error = struct open Paths (** Errors raised by Tools *) type handle_subs_error = [ `UnresolvedPath of [ `Module of Cpath.module_ ] (* Failed to resolve a module path when applying a fragment item *) ] type reference_kind = [ `S | `T | `C | `CT | `Page | `Cons | `Field | `Label ] type signature_of_module_error = [ `OpaqueModule (* The module does not have an expansion *) | `UnresolvedForwardPath (* The module signature depends upon a forward path *) | `UnresolvedPath of [ `Module of Cpath.module_ * simple_module_lookup_error | `ModuleType of Cpath.module_type * simple_module_type_lookup_error ] (* The path to the module or module type could not be resolved *) | `UnexpandedTypeOf of Component.ModuleType.type_of_desc (* The `module type of` expression could not be expanded *) ] and simple_module_lookup_error = [ `Local of Env.t * Ident.path_module (* Internal error: Found local path during lookup *) | `Unresolved_apply (* [`Apply] argument is not [`Resolved] *) | `Find_failure | (* Internal error: the module was not found in the parent signature *) `Lookup_failure of Identifier.Path.Module.t (* Could not find the module in the environment *) | `Lookup_failure_root of string (* Could not find the root module *) | `Parent of parent_lookup_error ] and simple_module_type_expr_of_module_error = [ `ApplyNotFunctor (* Internal error: attempt made to apply a module that's not a functor *) | `OpaqueModule (* The module does not have an expansion *) | `UnresolvedForwardPath (* The module signature depends upon a forward path *) | `UnresolvedPath of [ `Module of Cpath.module_ * simple_module_lookup_error | `ModuleType of Cpath.module_type * simple_module_type_lookup_error ] | `Parent of parent_lookup_error ] and simple_module_type_lookup_error = [ `LocalMT of Env.t * Ident.module_type (* Internal error: Found local path during lookup *) | `Find_failure (* Internal error: the module was not found in the parent signature *) | `Lookup_failureMT of Identifier.ModuleType.t (* Could not find the module in the environment *) | `Parent of parent_lookup_error ] and simple_type_lookup_error = [ `LocalType of Env.t * Ident.path_type (* Internal error: Found local path during lookup *) | `Class_replaced (* Class was replaced with a destructive substitution and we're not sure what to do now *) | `OpaqueClass (* Couldn't resolve class signature. *) | `Find_failure (* Internal error: the type was not found in the parent signature *) | `Lookup_failureT of Identifier.Path.Type.t (* Could not find the module in the environment *) | `Parent of parent_lookup_error ] and parent_lookup_error = [ `Parent_sig of signature_of_module_error (* Error found while calculating the parent signature *) | `Parent_module_type of simple_module_type_lookup_error (* Error found while looking up parent module type *) | `Parent_expr of simple_module_type_expr_of_module_error (* Error found while evaluating parent module expression *) | `Parent_module of simple_module_lookup_error (* Error found while looking up parent module *) | `Parent_type of simple_type_lookup_error | `Fragment_root (* Encountered unexpected fragment root *) | `Parent of parent_lookup_error | `Reference of reference_lookup_error ] and reference_lookup_error = [ `Wrong_kind of reference_kind list * reference_kind (* Expected, got *) | `Lookup_by_name of [ reference_kind | `Any ] * string | `Find_by_name of [ reference_kind | `Any ] * string | `Parent of parent_lookup_error ] type any = [ simple_type_lookup_error | simple_module_type_lookup_error | simple_module_type_expr_of_module_error | simple_module_lookup_error | signature_of_module_error | parent_lookup_error ] let pp_reference_kind fmt k = let k = match k with | `S -> "signature" | `T -> "type" | `C -> "class" | `CT -> "class type" | `Page -> "page" | `Cons -> "constructor" | `Field -> "field" | `Label -> "label" in Format.pp_print_string fmt k let rec pp : Format.formatter -> any -> unit = fun fmt err -> match err with | `OpaqueModule -> Format.fprintf fmt "OpaqueModule" | `OpaqueClass -> Format.fprintf fmt "Class is abstract" | `UnresolvedForwardPath -> Format.fprintf fmt "Unresolved forward path" | `UnresolvedPath (`Module (p, e)) -> Format.fprintf fmt "Unresolved module path %a (%a)" Component.Fmt.module_path p pp (e :> any) | `UnresolvedPath (`ModuleType (p, e)) -> Format.fprintf fmt "Unresolved module type path %a (%a)" Component.Fmt.module_type_path p pp (e :> any) | `LocalMT (_, id) -> Format.fprintf fmt "Local id found: %a" Ident.fmt id | `Local (_, id) -> Format.fprintf fmt "Local id found: %a" Ident.fmt id | `LocalType (_, id) -> Format.fprintf fmt "Local id found: %a" Ident.fmt id | `Unresolved_apply -> Format.fprintf fmt "Unresolved apply" | `Find_failure -> Format.fprintf fmt "Find failure" | `Lookup_failure m -> Format.fprintf fmt "Lookup failure (module): %a" Component.Fmt.model_identifier (m :> Odoc_model.Paths.Identifier.t) | `Lookup_failure_root r -> Format.fprintf fmt "Lookup failure (root module): %s" r | `Lookup_failureMT m -> Format.fprintf fmt "Lookup failure (module type): %a" Component.Fmt.model_identifier (m :> Odoc_model.Paths.Identifier.t) | `Lookup_failureT m -> Format.fprintf fmt "Lookup failure (type): %a" Component.Fmt.model_identifier (m :> Odoc_model.Paths.Identifier.t) | `ApplyNotFunctor -> Format.fprintf fmt "Apply module is not a functor" | `Class_replaced -> Format.fprintf fmt "Class replaced" | `Parent p -> pp fmt (p :> any) | `UnexpandedTypeOf t -> Format.fprintf fmt "Unexpanded `module type of` expression: %a" Component.Fmt.module_type_type_of_desc t | `Parent_sig e -> Format.fprintf fmt "Parent_sig: %a" pp (e :> any) | `Parent_module_type e -> Format.fprintf fmt "Parent_module_type: %a" pp (e :> any) | `Parent_expr e -> Format.fprintf fmt "Parent_expr: %a" pp (e :> any) | `Parent_module e -> Format.fprintf fmt "Parent_module: %a" pp (e :> any) | `Fragment_root -> Format.fprintf fmt "Fragment root" | `Parent_type e -> Format.fprintf fmt "Parent_type: %a" pp (e :> any) | `Reference e -> pp_reference_lookup_error fmt e and pp_reference_lookup_error fmt = function | `Wrong_kind (expected, got) -> let pp_sep fmt () = Format.fprintf fmt " or " in Format.fprintf fmt "is of kind %a but expected %a" pp_reference_kind got (Format.pp_print_list ~pp_sep pp_reference_kind) expected | `Lookup_by_name (kind, name) | `Find_by_name (kind, name) -> ( match kind with | `Any -> Format.fprintf fmt "Couldn't find %S" name | #reference_kind as kind -> Format.fprintf fmt "Couldn't find %a %S" pp_reference_kind kind name ) | `Parent e -> pp fmt (e :> any) end (* Ugh. we need to determine whether this was down to an unexpanded module type error. This is horrendous. *) let is_unexpanded_module_type_of = let open Tools_error in let rec inner : any -> bool = function | `Local _ -> false | `Find_failure -> false | `Lookup_failure _ -> false | `Unresolved_apply -> false | `Lookup_failure_root _ -> false | `Parent p -> inner (p :> any) | `Parent_sig p -> inner (p :> any) | `Parent_module_type p -> inner (p :> any) | `Parent_expr p -> inner (p :> any) | `Parent_module p -> inner (p :> any) | `Parent_type p -> inner (p :> any) | `Fragment_root -> false | `OpaqueModule -> false | `UnresolvedForwardPath -> false | `UnexpandedTypeOf _ -> true (* woo *) | `LocalMT _ -> false | `Lookup_failureMT _ -> false | `ApplyNotFunctor -> false | `UnresolvedPath (`Module (_, e)) -> inner (e :> any) | `UnresolvedPath (`ModuleType (_, e)) -> inner (e :> any) | `Lookup_failureT _ -> false | `LocalType _ -> false | `Class_replaced -> false | `OpaqueClass -> false | `Reference (`Parent p) -> inner (p :> any) | `Reference _ -> false in inner type kind = [ `OpaqueModule | `Root of string ] let rec kind_of_module_cpath = function | `Root name -> Some (`Root name) | `Substituted p' | `Dot (p', _) -> kind_of_module_cpath p' | `Apply (a, b) -> ( match kind_of_module_cpath a with | Some _ as a -> a | None -> kind_of_module_cpath b) | _ -> None let rec kind_of_module_type_cpath = function | `Substituted p' -> kind_of_module_type_cpath p' | `Dot (p', _) -> kind_of_module_cpath p' | _ -> None (** [Some (`Root _)] for errors during lookup of root modules or [None] for other errors. *) let rec kind_of_error : Tools_error.any -> kind option = function | `UnresolvedPath (`Module (cp, e)) -> ( match kind_of_module_cpath cp with | None -> kind_of_error (e :> Tools_error.any) | x -> x) | `UnresolvedPath (`ModuleType (cp, e)) -> ( match kind_of_module_type_cpath cp with | None -> kind_of_error (e :> Tools_error.any) | x -> x) | `Lookup_failure (`Root (_, name)) -> Some (`Root (Names.ModuleName.to_string name)) | `UnexpandedTypeOf type_of_desc -> kind_of_type_of_desc type_of_desc | `Lookup_failure_root name -> Some (`Root name) | `Parent (`Parent_sig e) -> kind_of_error (e :> Tools_error.any) | `Parent (`Parent_module_type e) -> kind_of_error (e :> Tools_error.any) | `Parent (`Parent_expr e) -> kind_of_error (e :> Tools_error.any) | `Parent (`Parent_module e) -> kind_of_error (e :> Tools_error.any) | `Parent (`Parent _ as e) -> kind_of_error (e :> Tools_error.any) | `OpaqueModule -> (* Don't turn OpaqueModule warnings into errors *) Some `OpaqueModule | _ -> None and kind_of_type_of_desc : Component.ModuleType.type_of_desc -> kind option = function | ModPath cp -> kind_of_module_cpath cp | StructInclude cp -> kind_of_module_cpath cp let kind_of_error ~what = function | Some e -> kind_of_error (e :> Tools_error.any) | None -> ( match what with | `Include (Component.Include.Alias cp) -> kind_of_module_cpath cp | `Module (`Root (_, name)) -> Some (`Root (Names.ModuleName.to_string name)) | _ -> None) open Paths type what = [ `Functor_parameter of Identifier.FunctorParameter.t | `Value of Identifier.Value.t | `Class of Identifier.Class.t | `Class_type of Identifier.ClassType.t | `Module of Identifier.Module.t | `Module_type of Identifier.Signature.t | `Module_path of Cpath.module_ | `Module_type_path of Cpath.module_type | `Module_type_U of Component.ModuleType.U.expr | `Include of Component.Include.decl | `Package of Cpath.module_type | `Type of Cfrag.type_ | `Type_path of Cpath.type_ | `Class_type_path of Cpath.class_type | `With_module of Cfrag.module_ | `With_module_type of Cfrag.module_type | `With_type of Cfrag.type_ | `Module_type_expr of Component.ModuleType.expr | `Module_type_u_expr of Component.ModuleType.U.expr | `Child of Reference.t | `Reference of Reference.t ] let report ~(what : what) ?tools_error action = let action = match action with | `Lookup -> "lookup" | `Expand -> "compile expansion for" | `Resolve_module_type -> "resolve type of" | `Resolve -> "resolve" | `Compile -> "compile" in let pp_tools_error fmt = function | Some e -> Format.fprintf fmt " %a" Tools_error.pp (e :> Tools_error.any) | None -> () in let open Component.Fmt in let report_internal_error () = let r subject pp_a a = Lookup_failures.report_internal "Failed to %s %s %a%a" action subject pp_a a pp_tools_error tools_error in let fmt_id fmt id = model_identifier fmt (id :> Paths.Identifier.t) in match what with | `Functor_parameter id -> r "functor parameter" fmt_id id | `Value id -> r "value" fmt_id id | `Class id -> r "class" fmt_id id | `Class_type id -> r "class type" fmt_id id | `Module id -> r "module" fmt_id id | `Module_type id -> r "module type" fmt_id id | `Module_path path -> r "module path" module_path path | `Module_type_path path -> r "module type path" module_type_path path | `Module_type_U expr -> r "module type expr" u_module_type_expr expr | `Include decl -> r "include" include_decl decl | `Package path -> r "module package" module_type_path (path :> Cpath.module_type) | `Type cfrag -> r "type" type_fragment cfrag | `Type_path path -> r "type" type_path path | `Class_type_path path -> r "class_type" class_type_path path | `With_module frag -> r "module substitution" module_fragment frag | `With_module_type frag -> r "module type substitution" module_type_fragment frag | `With_type frag -> r "type substitution" type_fragment frag | `Module_type_expr cexpr -> r "module type expression" module_type_expr cexpr | `Module_type_u_expr cexpr -> r "module type u expression" u_module_type_expr cexpr | `Child rf -> r "child reference" model_reference rf | `Reference ref -> r "reference" model_reference ref in match kind_of_error ~what tools_error with | Some (`Root name) -> Lookup_failures.report_root ~name | Some `OpaqueModule -> report_internal_error () | None -> report_internal_error ()
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>