MCPcopy
hub / github.com/angular/angular / LQuery_

Class LQuery_

packages/core/src/render3/queries/query.ts:36–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34import {storeCleanupWithContext} from '../util/view_utils';
35
36class LQuery_<T> implements LQuery<T> {
37 matches: (T | null)[] | null = null;
38 constructor(public queryList: QueryList<T>) {}
39 clone(): LQuery<T> {
40 return new LQuery_(this.queryList);
41 }
42 setDirty(): void {
43 this.queryList.setDirty();
44 }
45}
46
47class LQueries_ implements LQueries {
48 constructor(public queries: LQuery<any>[] = []) {}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…