* @since 3.10.0
()
| 1762 | * @since 3.10.0 |
| 1763 | */ |
| 1764 | toString() { |
| 1765 | return getExpected(this).pipe( |
| 1766 | Option.orElse(() => |
| 1767 | Option.flatMap( |
| 1768 | Option.liftThrowable(this.f)(), |
| 1769 | (ast) => getExpected(ast) |
| 1770 | ) |
| 1771 | ), |
| 1772 | Option.getOrElse(() => "<suspended schema>") |
| 1773 | ) |
| 1774 | } |
| 1775 | /** |
| 1776 | * @since 3.10.0 |
| 1777 | */ |
nothing calls this directly
no test coverage detected