~ubuntu-branches/debian/sid/ocaml/sid

« back to all changes in this revision

Viewing changes to ocamldoc/odoc_info.ml

  • Committer: Bazaar Package Importer
  • Author(s): Stéphane Glondu
  • Date: 2011-04-21 21:35:08 UTC
  • mfrom: (1.1.11 upstream) (12.1.14 sid)
  • Revision ID: james.westby@ubuntu.com-20110421213508-kg34453aqmb0moha
* Fixes related to -output-obj with g++ (in debian/patches):
  - add Declare-primitive-name-table-as-const-char
  - add Avoid-multiple-declarations-in-generated-.c-files-in
  - fix Embed-bytecode-in-C-object-when-using-custom: the closing
    brace for extern "C" { ... } was missing in some cases

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
(*                                                                     *)
10
10
(***********************************************************************)
11
11
 
12
 
(* $Id: odoc_info.ml 8416 2007-10-08 14:19:34Z doligez $ *)
 
12
(* $Id: odoc_info.ml 10480 2010-05-31 11:52:13Z guesdon $ *)
13
13
 
14
14
(** Interface for analysing documented OCaml source files and to the collected information. *)
15
15
 
43
43
  | Title of int * string option * text
44
44
  | Latex of string
45
45
  | Link of string * text
46
 
  | Ref of string * ref_kind option
 
46
  | Ref of string * ref_kind option * text option
47
47
  | Superscript of text
48
48
  | Subscript of text
49
49
  | Module_list of string list
50
50
  | Index_list
51
51
  | Custom of string * text
 
52
  | Target of string * string
52
53
 
53
54
and text = text_element list
54
55
 
71
72
    i_version : string option;
72
73
    i_sees : see list;
73
74
    i_since : string option;
 
75
    i_before : (string * text) list ;
74
76
    i_deprecated : text option;
75
77
    i_params : param list;
76
78
    i_raised_exceptions : raised_exception list;