(ast: Annotated)
| 2995 | const formatKeyword = (ast: AST): string => Option.getOrElse(getExpected(ast), () => ast._tag) |
| 2996 | |
| 2997 | function getBrands(ast: Annotated): string { |
| 2998 | return Option.match(getBrandAnnotation(ast), { |
| 2999 | onNone: () => "", |
| 3000 | onSome: (brands) => brands.map((brand) => ` & Brand<${Inspectable.formatUnknown(brand)}>`).join("") |
| 3001 | }) |
| 3002 | } |
| 3003 | |
| 3004 | const getOrElseExpected = (ast: Annotated): Option.Option<string> => |
| 3005 | getTitleAnnotation(ast).pipe( |
no test coverage detected