( slotOffset: number, factory: (context: T, view: LView) => (...args: unknown[]) => unknown, context: T, )
| 21 | * @codeGenApi |
| 22 | */ |
| 23 | export function ɵɵarrowFunction<T>( |
| 24 | slotOffset: number, |
| 25 | factory: (context: T, view: LView) => (...args: unknown[]) => unknown, |
| 26 | context: T, |
| 27 | ) { |
| 28 | const bindingIndex = getBindingRoot() + slotOffset; |
| 29 | const lView = getLView(); |
| 30 | return lView[bindingIndex] === NO_CHANGE |
| 31 | ? updateBinding(lView, bindingIndex, factory(context, lView)) |
| 32 | : getBinding(lView, bindingIndex); |
| 33 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…