* Set the doclet's `memberof` property. * * @param {string} sid - The longname of the doclet's parent symbol.
(sid)
| 343 | * @param {string} sid - The longname of the doclet's parent symbol. |
| 344 | */ |
| 345 | setMemberof(sid) { |
| 346 | /** |
| 347 | * The longname of the symbol that contains this one, if any. |
| 348 | * @type {string} |
| 349 | */ |
| 350 | this.memberof = removeGlobal(sid) |
| 351 | .replace(/\.prototype/g, jsdoc.name.SCOPE.PUNC.INSTANCE); |
| 352 | } |
| 353 | |
| 354 | /** |
| 355 | * Set the doclet's `longname` property. |
no test coverage detected