(annotated: AST.Annotated | undefined)
| 396 | } |
| 397 | |
| 398 | function getRawDescription(annotated: AST.Annotated | undefined): string | undefined { |
| 399 | if (annotated !== undefined) return Option.getOrUndefined(AST.getDescriptionAnnotation(annotated)) |
| 400 | } |
| 401 | |
| 402 | function getRawTitle(annotated: AST.Annotated | undefined): string | undefined { |
| 403 | if (annotated !== undefined) return Option.getOrUndefined(AST.getTitleAnnotation(annotated)) |
no outgoing calls
no test coverage detected