(items)
| 134 | } |
| 135 | |
| 136 | function addNonParamAttributes(items) { |
| 137 | let types = []; |
| 138 | |
| 139 | items.forEach(item => { |
| 140 | types = types.concat( buildItemTypeStrings(item) ); |
| 141 | }); |
| 142 | |
| 143 | return types; |
| 144 | } |
| 145 | |
| 146 | function addSignatureParams(f) { |
| 147 | const params = f.params ? addParamAttributes(f.params) : []; |
no test coverage detected
searching dependent graphs…