문제

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:

By default, the ASDoc tool generates output for all public and protected elements in an ActionScript class, even if you omit the ASDoc comment. To make ASDoc ignore an element, insert an ASDoc comment that contains the @private tag anywhere in the comment. The ASDoc comment can contain additional text along with the @private tag, which is also excluded from the output.

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top