In Parser.js, line 37:
if (!symbol.comment.getTag("public")) symbol.isPrivate = true;
This is never satisfied, because getTag() returns an array (which is
"true", even if empty).
Correct line should be:
if (!symbol.comment.getTag("public").length) symbol.isPrivate = true;
Original issue reported on code.google.com by ondrej.zara on 21 Nov 2008 at 2:00
Original issue reported on code.google.com by
ondrej.zara
on 21 Nov 2008 at 2:00