* @returns All `DebugElement` matches for the predicate at any depth in the subtree.
(predicate: Predicate<DebugElement>)
| 326 | * @returns All `DebugElement` matches for the predicate at any depth in the subtree. |
| 327 | */ |
| 328 | queryAll(predicate: Predicate<DebugElement>): DebugElement[] { |
| 329 | const matches: DebugElement[] = []; |
| 330 | _queryAll(this, predicate, matches, true); |
| 331 | return matches; |
| 332 | } |
| 333 | |
| 334 | /** |
| 335 | * @returns All `DebugNode` matches for the predicate at any depth in the subtree. |