(entry)
| 82 | } |
| 83 | |
| 84 | function locationInfo(entry) { |
| 85 | return { |
| 86 | file: entry.context?.file ? entry.context.file.slice(entry.context.file.indexOf('src/')) : '', |
| 87 | line: entry.context?.loc?.start?.line || 1 |
| 88 | }; |
| 89 | } |
| 90 | |
| 91 | function deprecationInfo(entry) { |
| 92 | if (!entry.deprecated) { |