Module Lang.Source_infoSource

Modules

Sourcetype anchor = {
  1. anchor : string;
}
Sourcetype jmp_to_def =
  1. | Occurence of anchor
  2. | Def of string
  3. | ValuePath of Paths.Path.Value.t
  4. | ModulePath of Paths.Path.Module.t
  5. | ClassPath of Paths.Path.ClassType.t
  6. | MtyPath of Paths.Path.ModuleType.t
  7. | TypePath of Paths.Path.Type.t
Sourcetype info =
  1. | Syntax of string
  2. | Local_jmp of jmp_to_def
Sourcetype 'a with_pos = 'a * (int * int)
Sourcetype infos = info with_pos list
Sourcetype t = {
  1. id : Paths.Identifier.SourcePage.t option;
  2. infos : infos;
}