jsduck icon indicating copy to clipboard operation
jsduck copied to clipboard

redundant privates information

Open sesigl opened this issue 9 years ago • 0 comments

If I have a function

privates: {
   /**
    * @private
    **/
   myFunction: function() {

   }
}

then I have to add @private because it would set this function to public because there is a comment. This information is redundant and should be removed. It should not set public by default. If a comment exists in privates then the default value should be private if a comment exists.

sesigl avatar May 11 '15 14:05 sesigl