MCPcopy Index your code
hub / github.com/angular/angular / isViewQuery

Function isViewQuery

packages/core/src/render3/jit/directive.ts:489–492  ·  view source on GitHub ↗
(value: any)

Source from the content-addressed store, hash-verified

487}
488
489function isViewQuery(value: any): value is Query {
490 const name = value.ngMetadataName;
491 return name === 'ViewChild' || name === 'ViewChildren';
492}
493
494function isInputAnnotation(value: any): value is Input {
495 return value.ngMetadataName === 'Input';

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…