(tView: TView, tNode: TNode)
| 146 | } |
| 147 | |
| 148 | template(tView: TView, tNode: TNode): void { |
| 149 | ngDevMode && |
| 150 | assertFirstCreatePass( |
| 151 | tView, |
| 152 | 'Queries should collect results on the first template pass only', |
| 153 | ); |
| 154 | for (let i = 0; i < this.queries.length; i++) { |
| 155 | this.queries[i].template(tView, tNode); |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | getByIndex(index: number): TQuery { |
| 160 | ngDevMode && assertIndexInRange(this.queries, index); |
nothing calls this directly
no test coverage detected