revert: refactor(ivy): Update query-related comments (#29342)

This commit is contained in:
Matias Niemelä
2019-03-18 13:39:10 -07:00
parent fe759ee0cf
commit b759d63389
4 changed files with 6 additions and 22 deletions

View File

@ -365,9 +365,7 @@ export function query<T>(
/**
* Refreshes a query by combining matches from all active views and removing matches from deleted
* views.
*
* @returns `true` if a query got dirty during change detection or if this is a static query
* resolving in creation mode, `false` otherwise.
* Returns true if a query got dirty during change detection, false otherwise.
*/
export function queryRefresh(queryList: QueryList<any>): boolean {
const queryListImpl = (queryList as any as QueryList_<any>);