(directives)
| 52 | } |
| 53 | |
| 54 | function getDeprecationStatus(directives) { |
| 55 | if (!directives.length) return |
| 56 | |
| 57 | return directives[0].name.value === 'deprecated' |
| 58 | } |
| 59 | |
| 60 | async function getDescription(rawDescription) { |
| 61 | rawDescription = rawDescription.replace(singleQuotesInsteadOfBackticks, '`$1`') |
nothing calls this directly
no outgoing calls
no test coverage detected