* Determines when the binding is in `hostBindings` section * * @param tView Current `TView` * @param bindingIndex index of binding which we would like if it is in `hostBindings`
(tView: TView, bindingIndex: number)
| 308 | * @param bindingIndex index of binding which we would like if it is in `hostBindings` |
| 309 | */ |
| 310 | function isInHostBindings(tView: TView, bindingIndex: number): boolean { |
| 311 | // All host bindings are placed after the expando section. |
| 312 | return bindingIndex >= tView.expandoStartIndex; |
| 313 | } |
| 314 | |
| 315 | /** |
| 316 | * Collects the necessary information to insert the binding into a linked list of style bindings |
no outgoing calls
no test coverage detected
searching dependent graphs…