(entry)
| 89 | } |
| 90 | |
| 91 | function deprecationInfo(entry) { |
| 92 | if (!entry.deprecated) { |
| 93 | return {}; |
| 94 | } |
| 95 | return { |
| 96 | deprecated: true, |
| 97 | deprecationMessage: strategy.processDescription(entry.deprecated) |
| 98 | }; |
| 99 | } |
| 100 | |
| 101 | function getExample(entry) { |
| 102 | return entry.description; |