(items)
| 125 | } |
| 126 | |
| 127 | function addNonParamAttributes(items) { |
| 128 | var types = []; |
| 129 | |
| 130 | items.forEach(function(item) { |
| 131 | types = types.concat( buildItemTypeStrings(item) ); |
| 132 | }); |
| 133 | |
| 134 | return types; |
| 135 | } |
| 136 | |
| 137 | function addSignatureParams(f) { |
| 138 | var params = f.params ? addParamAttributes(f.params) : []; |
no test coverage detected