(index: number, slotOffset: number, v1: any, v2: any, v3: any)
| 229 | * @codeGenApi |
| 230 | */ |
| 231 | export function ɵɵpipeBind3(index: number, slotOffset: number, v1: any, v2: any, v3: any): any { |
| 232 | const adjustedIndex = index + HEADER_OFFSET; |
| 233 | const lView = getLView(); |
| 234 | const pipeInstance = load<PipeTransform>(lView, adjustedIndex); |
| 235 | return isPure(lView, adjustedIndex) |
| 236 | ? pureFunction3Internal( |
| 237 | lView, |
| 238 | getBindingRoot(), |
| 239 | slotOffset, |
| 240 | pipeInstance.transform, |
| 241 | v1, |
| 242 | v2, |
| 243 | v3, |
| 244 | pipeInstance, |
| 245 | ) |
| 246 | : pipeInstance.transform(v1, v2, v3); |
| 247 | } |
| 248 | |
| 249 | /** |
| 250 | * Invokes a pipe with 4 arguments. |
nothing calls this directly
no test coverage detected