* Gets the code name of the given symbol. * @name jsdocx.utils.getCodeName * @function * * @param {Object} symbol - Documented symbol object. * @returns {String} - If no code name, falls back to long name.
(symbol)
| 151 | * @returns {String} - If no code name, falls back to long name. |
| 152 | */ |
| 153 | getCodeName(symbol) { |
| 154 | return getMetaCodeName(symbol) || utils.getLongName(symbol); |
| 155 | }, |
| 156 | |
| 157 | /** |
| 158 | * Gets the number of levels for the given symbol or name. e.g. |
nothing calls this directly
no test coverage detected