(s, _, exit, i)
| 1761 | new SchemaTransformation.Transformation( |
| 1762 | SchemaGetter.transform(() => ast.literal), |
| 1763 | SchemaGetter.transform(() => literalAsString) |
| 1764 | ) |
| 1765 | ) |
| 1766 | ]) |
| 1767 | } |
| 1768 | |
| 1769 | /** |
| 1770 | * AST node matching any `string` value. |
| 1771 | * |
| 1772 | * @see {@link string} |
| 1773 | * @see {@link isString} |
| 1774 | * |
| 1775 | * @category models |
| 1776 | * @since 4.0.0 |
| 1777 | */ |
| 1778 | export interface String extends ASTNode { |
| 1779 | readonly _tag: "String" |
| 1780 | /** @internal */ |
| 1781 | |
| 1782 | getParser(): SchemaParser.Parser |
nothing calls this directly
no test coverage detected
searching dependent graphs…