Closed
Description
In addition to the @Private and @Protected tags, closure compiler also supports @Package, which corresponds to the notion from Java of "package private":
https://developers.google.com/closure/compiler/docs/js-for-compiler
Marks a member or property as package private. Only code in the same directory can access names marked @Package. In particular, code in parent and child directories cannot access names marked @Package.
It would be great for JSDoc to add this if not too difficult. I see @Package listed in issue #605, but no separate issue for it. For me, just being able to exclude items marked @Package from the JSDoc output would be useful.