Bug 3887 – ddoc does not replicate @property to documentation
Status
RESOLVED
Resolution
DUPLICATE
Severity
normal
Priority
P2
Component
dmd
Product
D
Version
D2
Platform
Other
OS
Linux
Creation time
2010-03-06T19:51:00Z
Last change time
2015-06-09T01:27:37Z
Assigned to
nobody
Creator
schveiguy
Comments
Comment #0 by schveiguy — 2010-03-06T19:51:27Z
when compiling a function with ddoc that contains a @property notation, the notation is not copied to the html file.
Sample file:
/**
* struct s
*/
struct s
{
/**
* p does this
*/
@property void p() {}
}
results in documentation that just identifies s.p as:
void p()
Note, I did not test all other attributes, just @property, most likely there could be issues with the other attributes.
Comment #1 by schveiguy — 2010-05-28T15:17:13Z
Yep, I guess other properties also don't show up.
*** This issue has been marked as a duplicate of issue 3445 ***