(lView: LView, bindingIndex: number)
| 22 | |
| 23 | /** Gets the current binding value. */ |
| 24 | export function getBinding(lView: LView, bindingIndex: number): any { |
| 25 | ngDevMode && assertIndexInRange(lView, bindingIndex); |
| 26 | ngDevMode && |
| 27 | assertNotSame(lView[bindingIndex], NO_CHANGE, 'Stored value should never be NO_CHANGE.'); |
| 28 | return lView[bindingIndex]; |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Updates binding if changed, then returns whether it was updated. |
no test coverage detected
searching dependent graphs…