* 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)
| 347 | * @param bindingIndex index of binding which we would like if it is in `hostBindings` |
| 348 | */ |
| 349 | function isInHostBindings(tView: TView, bindingIndex: number): boolean { |
| 350 | // All host bindings are placed after the expando section. |
| 351 | return bindingIndex >= tView.expandoStartIndex; |
| 352 | } |
| 353 | |
| 354 | /** |
| 355 | * Collects the necessary information to insert the binding into a linked list of style bindings |
no outgoing calls
no test coverage detected