(
this: TypeMatcher<any, any, any, any>,
_case: Case
)
| 19 | }, |
| 20 | _tag: "TypeMatcher", |
| 21 | add<I, R, RA, A>( |
| 22 | this: TypeMatcher<any, any, any, any>, |
| 23 | _case: Case |
| 24 | ): TypeMatcher<I, R, RA, A> { |
| 25 | return makeTypeMatcher([...this.cases, _case]) |
| 26 | }, |
| 27 | pipe() { |
| 28 | return pipeArguments(this, arguments) |
| 29 | } |
nothing calls this directly
no test coverage detected