(f)
| 182 | } |
| 183 | |
| 184 | function addSignatureTypes(f) { |
| 185 | const types = f.type ? buildItemTypeStrings(f) : []; |
| 186 | |
| 187 | f.signature = `${f.signature || ''}<span class="type-signature">${types.length ? ` :${types.join('|')}` : ''}</span>`; |
| 188 | } |
| 189 | |
| 190 | function addAttribs(f) { |
| 191 | const attribs = helper.getAttribs(f); |
no test coverage detected
searching dependent graphs…