class foo {
/**
* My doc
*/
#bar = [];
/**
* My other doc.
* @param {array} values
*/
set bar(values) {
this.#bar = values;
}
sphinx-js fails with:
sphinx_js.suffix_tree.PathsTaken: Your code contains multiple documented objects at each of these paths:
./myfile.foo#bar
We won't know which one you're talking about.
If I change the name of the setter or the private variable, then sphinx-js works.
With this code:
sphinx-js fails with:
If I change the name of the setter or the private variable, then sphinx-js works.