(items)
| 142 | } |
| 143 | |
| 144 | function addNonParamAttributes(items) { |
| 145 | var types = [] |
| 146 | |
| 147 | items.forEach(function(item) { |
| 148 | types = types.concat( buildItemTypeStrings(item) ) |
| 149 | }) |
| 150 | |
| 151 | return types |
| 152 | } |
| 153 | |
| 154 | function addSignatureParams(f) { |
| 155 | var params = f.params ? addParamAttributes(f.params) : [] |
no test coverage detected
searching dependent graphs…