(lView: LView, bindingIndex: number, exp1: any, exp2: any)
| 86 | |
| 87 | /** Updates 2 bindings if changed, then returns whether either was updated. */ |
| 88 | export function bindingUpdated2(lView: LView, bindingIndex: number, exp1: any, exp2: any): boolean { |
| 89 | const different = bindingUpdated(lView, bindingIndex, exp1); |
| 90 | return bindingUpdated(lView, bindingIndex + 1, exp2) || different; |
| 91 | } |
| 92 | |
| 93 | /** Updates 3 bindings if changed, then returns whether any was updated. */ |
| 94 | export function bindingUpdated3( |
no test coverage detected
searching dependent graphs…