* Set the doclet's `longname` property. * * @param {string} name - The longname for the doclet.
(name)
| 357 | * @param {string} name - The longname for the doclet. |
| 358 | */ |
| 359 | setLongname(name) { |
| 360 | /** |
| 361 | * The fully resolved symbol name. |
| 362 | * @type {string} |
| 363 | */ |
| 364 | this.longname = removeGlobal(name); |
| 365 | if (jsdoc.tag.dictionary.isNamespace(this.kind)) { |
| 366 | this.longname = jsdoc.name.applyNamespace(this.longname, this.kind); |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | /** |
| 371 | * Set the doclet's `scope` property. Must correspond to a scope name that is defined in |
no test coverage detected