* @since 3.10.0
()
| 1820 | * @since 3.10.0 |
| 1821 | */ |
| 1822 | toString() { |
| 1823 | return getIdentifierAnnotation(this).pipe(Option.getOrElse(() => |
| 1824 | Option.match(getOrElseExpected(this), { |
| 1825 | onNone: () => `{ ${this.from} | filter }`, |
| 1826 | onSome: (expected) => isRefinement(this.from) ? String(this.from) + " & " + expected : expected |
| 1827 | }) |
| 1828 | )) |
| 1829 | } |
| 1830 | /** |
| 1831 | * @since 3.10.0 |
| 1832 | */ |
nothing calls this directly
no test coverage detected