* Checks whether the given symbol is an instance method. * @name jsdocx.utils.isInstanceMethod * @function * * @param {Object} symbol - Documented symbol object. * @returns {Boolean} -
(symbol)
| 445 | * @returns {Boolean} - |
| 446 | */ |
| 447 | isInstanceMethod(symbol) { |
| 448 | return utils.isInstanceMember(symbol) && utils.isMethod(symbol); |
| 449 | }, |
| 450 | |
| 451 | /** |
| 452 | * Checks whether the given symbol is a static method. |
nothing calls this directly
no outgoing calls
no test coverage detected