web-component-analyzer icon indicating copy to clipboard operation
web-component-analyzer copied to clipboard

Protected fields not included in output.

Open justinfagnani opened this issue 4 years ago • 1 comments

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

justinfagnani avatar Feb 05 '20 02:02 justinfagnani

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"})

runem avatar Feb 10 '20 13:02 runem