comparison trunk/src/predefined.ddoc @ 744:7173ece1b696

Wrapped some macro functions inside struct MacroExpander. Warning messages from the macro expansion pass are collected now. Tidied up predefined.ddoc a bit, and added some macros. Added two messages to struct MSG. Added another opCatAssign to class InfoManager.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sat, 09 Feb 2008 22:54:31 +0100
parents 49fe21aa387c
children e76c9fdb83a3
comparison
equal deleted inserted replaced
743:764f660e3909 744:7173ece1b696
36 GREEN = <font color="green">$0</font> 36 GREEN = <font color="green">$0</font>
37 YELLOW = <font color="yellow">$0</font> 37 YELLOW = <font color="yellow">$0</font>
38 BLACK = <font color="black">$0</font> 38 BLACK = <font color="black">$0</font>
39 WHITE = <font color="white">$0</font> 39 WHITE = <font color="white">$0</font>
40 40
41 D_CODE = <pre class="d_code">$0</pre> 41 D_CODE = <pre class="d_code">$0</pre>
42 D_COMMENT = $(GREEN $0) 42 D_COMMENT = $(GREEN $0)
43 D_STRING = $(RED $0) 43 D_STRING = $(RED $0)
44 D_KEYWORD = $(BLUE $0) 44 D_KEYWORD = $(BLUE $0)
45 D_PSYMBOL = $(U $0) 45 D_PSYMBOL = $(U $0)
46 D_PARAM = $(I $0) 46 D_PARAM = $(I $0)
47 47
48 DDOC_COMMENT = <!-- $0 --> 48 DDOC_COMMENT = <!-- $0 -->
49 DDOC_DECL = $(DT $(BIG $0)) 49 DDOC_DECL = $(DT $(BIG $0))
50 DDOC_DECL_DD = $(DD $0) 50 DDOC_DECL_DD = $(DD $0)
51 DDOC_DITTO = $(BR)$0 51 DDOC_DITTO = $(BR)$0
52
52 DDOC_SECTIONS = $0 53 DDOC_SECTIONS = $0
53 DDOC_SUMMARY = $0$(BR)$(BR) 54 DDOC_SUMMARY = $0$(BR)$(BR)
54 DDOC_DESCRIPTION = $0$(BR)$(BR) 55 DDOC_DESCRIPTION = $0$(BR)$(BR)
55 DDOC_AUTHORS = $(B Authors:)$(BR) 56 DDOC_AUTHORS = $(B Authors:)$(BR)
56 $0$(BR)$(BR) 57 $0$(BR)$(BR)
76 $0$(BR)$(BR) 77 $0$(BR)$(BR)
77 DDOC_THROWS = $(B Throws:)$(BR) 78 DDOC_THROWS = $(B Throws:)$(BR)
78 $0$(BR)$(BR) 79 $0$(BR)$(BR)
79 DDOC_VERSION = $(B Version:)$(BR) 80 DDOC_VERSION = $(B Version:)$(BR)
80 $0$(BR)$(BR) 81 $0$(BR)$(BR)
81 DDOC_SECTION_H = $(B $0)$(BR)$(BR) 82 DDOC_SECTION_H = $(B $0)$(BR)
82 DDOC_SECTION = $0$(BR)$(BR) 83 DDOC_SECTION = $0$(BR)$(BR)
84
83 DDOC_MEMBERS = $(DL $0) 85 DDOC_MEMBERS = $(DL $0)
84 DDOC_MODULE_MEMBERS = $(DDOC_MEMBERS $0) 86 DDOC_MODULE_MEMBERS = $(DDOC_MEMBERS $0)
85 DDOC_CLASS_MEMBERS = $(DDOC_MEMBERS $0) 87 DDOC_CLASS_MEMBERS = $(DDOC_MEMBERS $0)
86 DDOC_STRUCT_MEMBERS = $(DDOC_MEMBERS $0) 88 DDOC_INTERFACE_MEMBERS = $(DDOC_MEMBERS $0)
87 DDOC_ENUM_MEMBERS = $(DDOC_MEMBERS $0) 89 DDOC_STRUCT_MEMBERS = $(DDOC_MEMBERS $0)
88 DDOC_TEMPLATE_MEMBERS = $(DDOC_MEMBERS $0) 90 DDOC_UNION_MEMBERS = $(DDOC_MEMBERS $0)
91 DDOC_TEMPLATE_MEMBERS = $(DDOC_MEMBERS $0)
92 DDOC_ENUM_MEMBERS = $(DDOC_MEMBERS $0)
93
89 DDOC_PARAMS = $(B Params:)$(BR) 94 DDOC_PARAMS = $(B Params:)$(BR)
90 $(TABLE $0)$(BR) 95 $(TABLE $0)$(BR)
91 DDOC_PARAM_ROW = $(TR $0) 96 DDOC_PARAM_ROW = $(TR $0)
92 DDOC_PARAM_ID = $(TD $0) 97 DDOC_PARAM_ID = $(TD $0)
93 DDOC_PARAM_DESC = $(TD $0) 98 DDOC_PARAM_DESC = $(TD $0)