(f: (ast: AST) => AST)
| 3137 | return new FilterGroup(this.checks, { ...this.annotations, ...annotations }) |
| 3138 | } |
| 3139 | and(other: Check<E>, annotations?: Schema.Annotations.Filter): FilterGroup<E> |
| 3140 | and(other: Check<E>, annotations?: Schema.Annotations.Filter): FilterGroup<E> { |
| 3141 | return new FilterGroup([this, other], annotations) |
| 3142 | } |
| 3143 | } |
| 3144 |
no test coverage detected
searching dependent graphs…