(source: string, index: number)
| 1617 | } |
| 1618 | |
| 1619 | function isInlineLinkStart(source: string, index: number): boolean { |
| 1620 | if (!source.startsWith("{@link", index)) return false |
| 1621 | const next = source[index + "{@link".length] |
| 1622 | return next === undefined || /\s|}/.test(next) |
| 1623 | } |
| 1624 | |
| 1625 | function hasInlineLink(block: JSDocBlock): boolean { |
| 1626 | return block.lines.some((line) => { |
no outgoing calls
no test coverage detected