(index: number, slotOffset: number, v1: any, v2: any)
| 198 | * @codeGenApi |
| 199 | */ |
| 200 | export function ɵɵpipeBind2(index: number, slotOffset: number, v1: any, v2: any): any { |
| 201 | const adjustedIndex = index + HEADER_OFFSET; |
| 202 | const lView = getLView(); |
| 203 | const pipeInstance = load<PipeTransform>(lView, adjustedIndex); |
| 204 | return isPure(lView, adjustedIndex) |
| 205 | ? pureFunction2Internal( |
| 206 | lView, |
| 207 | getBindingRoot(), |
| 208 | slotOffset, |
| 209 | pipeInstance.transform, |
| 210 | v1, |
| 211 | v2, |
| 212 | pipeInstance, |
| 213 | ) |
| 214 | : pipeInstance.transform(v1, v2); |
| 215 | } |
| 216 | |
| 217 | /** |
| 218 | * Invokes a pipe with 3 arguments. |
nothing calls this directly
no test coverage detected