runem / web-component-analyzer

CLI that analyzes web components and emits documentation
https://runem.github.io/web-component-analyzer
MIT License
501 stars 63 forks source link

Protected fields not included in output. #144

Open justinfagnani opened 4 years ago

justinfagnani commented 4 years ago

For subclassing developers will need to see the protected fields they can access.

runem commented 4 years ago

If you run the CLI with the visibility flag you can emit private or protected members as well:

wca --visibility protected

The same goes for the transformAnalyzerResult function:

transformAnalyzerResult("markdown", results, program, {visibility: "protected"})