You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I sometimes manipulate properties of my class via this[property] = value. This however generates a public member 'property' in my ESDoc generated document:
classFoo{/** * Creates a new instance of Foo * * @constructor */constructor(){/** @type {string} */this.foo='bar';}/** * Set the given property in the class. * * @param {string} property property to set * @param {*} value new value */manipulate(property,value){this[property]=value;}}
The text was updated successfully, but these errors were encountered:
I sometimes manipulate properties of my class via this[property] = value. This however generates a public member 'property' in my ESDoc generated document:
The text was updated successfully, but these errors were encountered: