I'm cleaning up my code with the gjslint tool from Google Closure Tools. It is reporting the following error:
Line 15, E:0222: Member "this._dictionary" must not have @private JsDoc
And this is the code:
/**
* Stacker class.
* @constructor
* @param {frankenstein.app.Dictionary} dictionary input dictionary for stacking.
*/
frankenstein.app.Stacker = function(dictionary) {
/** @private */ this._dictionary = dictionary;
};
Can somebody explain why this._dictionary must not have @private JsDoc? Thanks!