runem / web-component-analyzer

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

privacy not respected (e.g.: `@private`) #189

Open thepassle opened 3 years ago

thepassle commented 3 years ago

Given the following code:

/**
 * @private 
 */
  get expanded() {
    return this.__expanded;
  }

The expanded field is not listed in the output. If I remove the @private, the expanded field is listed in the json output, but with privacy public.