Hail Stack!!
I'm developing a framework for my coworkers and I'm having trouble documenting it.
ASDocs as omitting the private members (even without @private directive).
Is there any way to force it to document it??
Hail Stack!!
I'm developing a framework for my coworkers and I'm having trouble documenting it.
ASDocs as omitting the private members (even without @private directive).
Is there any way to force it to document it??
This is from the ASDocs documentation:
It explicitly says "for all public and protected elements", which makes sense for API documentation: private members are not accessible from outside the class, and therefore remain hidden.
See this answer, too: Documenting private members with ASDoc