~clint-fewbar/ubuntu/precise/erlang/merge-15b

« back to all changes in this revision

Viewing changes to lib/edoc/src/edoc.hrl

  • Committer: Package Import Robot
  • Author(s): Sergei Golovan
  • Date: 2011-12-15 19:20:10 UTC
  • mfrom: (1.1.18) (3.5.15 sid)
  • mto: (3.5.16 sid)
  • mto: This revision was merged to the branch mainline in revision 33.
  • Revision ID: package-import@ubuntu.com-20111215192010-jnxcfe3tbrpp0big
Tags: 1:15.b-dfsg-1
* New upstream release.
* Upload to experimental because this release breaks external drivers
  API along with ABI, so several applications are to be fixed.
* Removed SSL patch because the old SSL implementation is removed from
  the upstream distribution.
* Removed never used patch which added native code to erlang beam files.
* Removed the erlang-docbuilder binary package because the docbuilder
  application was dropped by upstream.
* Documented dropping ${erlang-docbuilder:Depends} substvar in
  erlang-depends(1) manpage.
* Made erlang-base and erlang-base-hipe provide virtual package
  erlang-abi-15.b (the number means the first erlang version, which
  provides current ABI).

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
%% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19
19
%% USA
20
20
%%
21
 
%% Author contact: richardc@it.uu.se
 
21
%% Author contact: carlsson.richard@gmail.com
22
22
%% =====================================================================
23
23
 
24
24
%% Note: Documentation in this file is included by edoc_extract.erl
37
37
-define(SOURCE_DIR, "src").
38
38
-define(EBIN_DIR, "ebin").
39
39
-define(EDOC_DIR, "doc").
 
40
-define(REPORT_MISSING_TYPES, false).
40
41
 
41
42
-include("edoc_doclet.hrl").
42
43
 
83
84
 
84
85
%% Module Entries (one per function, plus module header and footer)
85
86
 
86
 
%% @type entry() = #entry{name = atom(),
87
 
%%                        args = [string()],
 
87
%% @type entry() = #entry{{atom(), integer()}  % function
 
88
%%                          | name = atom(),   % other
 
89
%%                        args = [atom()],
88
90
%%                        line = integer(),
89
 
%%                        export = bool(),
 
91
%%                        export = boolean(),
90
92
%%                        data = term()}
91
93
 
92
94
-record(entry, {name, args = [], line = 0, export, data}).
95
97
 
96
98
%% @type tag() = #tag{name = atom(),
97
99
%%                    line = integer(),
 
100
%%                    origin = comment | code,
98
101
%%                    data = term()}
99
102
 
100
 
-record(tag, {name, line = 0, data}).
 
103
-record(tag, {name, line = 0, origin = comment, data}).