* Retrieve the most recently seen doclet that has the given longname. * * @param {string} longname - The longname to search for. * @return {module:jsdoc/doclet.Doclet?} The most recent doclet for the longname.
(longname)
| 346 | * @return {module:jsdoc/doclet.Doclet?} The most recent doclet for the longname. |
| 347 | */ |
| 348 | _getDocletByLongname(longname) { |
| 349 | return this._byLongname.get(longname); |
| 350 | } |
| 351 | |
| 352 | // TODO: docs |
| 353 | /** |
no test coverage detected