Module Paths.ReferenceSource

References present in documentation comments ({!Foo.Bar})

Sourcemodule Resolved : sig ... end
Sourcemodule Signature : sig ... end
Sourcemodule ClassSignature : sig ... end
Sourcemodule DataType : sig ... end
Sourcemodule FragmentTypeParent : sig ... end
Sourcemodule LabelParent : sig ... end
Sourcemodule Module : sig ... end
Sourcemodule ModuleType : sig ... end
Sourcemodule Type : sig ... end
Sourcemodule Constructor : sig ... end
Sourcemodule Field : sig ... end
Sourcemodule Extension : sig ... end
Sourcemodule ExtensionDecl : sig ... end
Sourcemodule Exception : sig ... end
Sourcemodule Value : sig ... end
Sourcemodule Class : sig ... end
Sourcemodule ClassType : sig ... end
Sourcemodule Method : sig ... end
Sourcemodule InstanceVariable : sig ... end
Sourcemodule Label : sig ... end
Sourcemodule Page : sig ... end
Sourcemodule Asset : sig ... end
Sourcemodule Hierarchy : sig ... end
Sourcetype t = [
  1. | `Resolved of Resolved.t
  2. | `Root of string * tag_any
  3. | `Dot of LabelParent.t * string
  4. | `Page_path of Hierarchy.t
  5. | `Module_path of Hierarchy.t
  6. | `Asset_path of Hierarchy.t
  7. | `Any_path of Hierarchy.t
  8. | `Module of Signature.t * Names.ModuleName.t
  9. | `ModuleType of Signature.t * Names.ModuleTypeName.t
  10. | `Type of Signature.t * Names.TypeName.t
  11. | `Constructor of FragmentTypeParent.t * Names.ConstructorName.t
  12. | `Field of FragmentTypeParent.t * Names.FieldName.t
  13. | `Extension of Signature.t * Names.ExtensionName.t
  14. | `ExtensionDecl of Signature.t * Names.ExtensionName.t
  15. | `Exception of Signature.t * Names.ExceptionName.t
  16. | `Value of Signature.t * Names.ValueName.t
  17. | `Class of Signature.t * Names.TypeName.t
  18. | `ClassType of Signature.t * Names.TypeName.t
  19. | `Method of ClassSignature.t * Names.MethodName.t
  20. | `InstanceVariable of ClassSignature.t * Names.InstanceVariableName.t
  21. | `Label of LabelParent.t * Names.LabelName.t
]
Sourcetype tag_any = [
  1. | `TModule
  2. | `TModuleType
  3. | `TType
  4. | `TConstructor
  5. | `TField
  6. | `TExtension
  7. | `TExtensionDecl
  8. | `TException
  9. | `TValue
  10. | `TClass
  11. | `TClassType
  12. | `TMethod
  13. | `TInstanceVariable
  14. | `TLabel
  15. | `TPage
  16. | `TAsset
  17. | `TChildPage
  18. | `TChildModule
  19. | `TUnknown
]
Sourcetype tag_hierarchy = [
  1. | `TRelativePath
    (*

    {!identifier/}

    *)
  2. | `TAbsolutePath
    (*

    {!/identifier}

    *)
  3. | `TCurrentPackage
    (*

    {!//identifier}

    *)
]