/** * @constructor */ function Cat (){ } Cat.prototype.public = function (){ }; /** * @private */ Cat.prototype._private = function (){ };