(strings)
| 265 | return map(formatResult, sortedResult) |
| 266 | |
| 267 | def getAbbr(strings): |
| 268 | tmplst = filter(lambda x: x.isKindTypedText(), strings) |
| 269 | if len(tmplst) == 0: |
| 270 | return "" |
| 271 | else: |
| 272 | return tmplst[0].spelling |
| 273 | |
| 274 | kinds = dict({ \ |
| 275 | # Declarations \ |
no test coverage detected