( base: T[], other: T[], )
| 183 | } |
| 184 | |
| 185 | export function areAllEquivalent<T extends {isEquivalent(other: T): boolean}>( |
| 186 | base: T[], |
| 187 | other: T[], |
| 188 | ) { |
| 189 | return areAllEquivalentPredicate(base, other, (baseElement: T, otherElement: T) => |
| 190 | baseElement.isEquivalent(otherElement), |
| 191 | ); |
| 192 | } |
| 193 | |
| 194 | export abstract class Expression { |
| 195 | public type: Type | null; |
no test coverage detected
searching dependent graphs…