(annotated: AST.Annotated | undefined)
| 400 | } |
| 401 | |
| 402 | function getRawTitle(annotated: AST.Annotated | undefined): string | undefined { |
| 403 | if (annotated !== undefined) return Option.getOrUndefined(AST.getTitleAnnotation(annotated)) |
| 404 | } |
| 405 | |
| 406 | function getRawDefault(annotated: AST.Annotated | undefined): Option.Option<unknown> { |
| 407 | if (annotated !== undefined) return AST.getDefaultAnnotation(annotated) |
no outgoing calls
no test coverage detected