(item: any)
| 210 | protected abstract initialize(options?: any): void |
| 211 | |
| 212 | protected evaluateIndexExpression(item: any): any { |
| 213 | const evaluator = compileSingleRowExpression(this.expression) |
| 214 | return evaluator(item as Record<string, unknown>) |
| 215 | } |
| 216 | |
| 217 | protected trackLookup(startTime: number): void { |
| 218 | const duration = performance.now() - startTime |
nothing calls this directly
no test coverage detected