(tView: TView, lView: LView)
| 78 | * @param lView The view to sync |
| 79 | */ |
| 80 | export function syncViewWithBlueprint(tView: TView, lView: LView) { |
| 81 | for (let i = lView.length; i < tView.blueprint.length; i++) { |
| 82 | lView.push(tView.blueprint[i]); |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | /** |
| 87 | * Processes a view in the creation mode. This includes a number of steps in a specific order: |
no test coverage detected
searching dependent graphs…