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

Function getPipeDef

packages/core/src/render3/def_getters.ts:61–64  ·  view source on GitHub ↗
(type: any)

Source from the content-addressed store, hash-verified

59}
60
61export function getPipeDef<T>(type: any): PipeDef<T> | null {
62 assertTypeDefined(type, '@Pipe');
63 return type[NG_PIPE_DEF] || null;
64}
65
66function assertTypeDefined(type: any, symbolType: string): void {
67 if (type == null) {

Callers 13

verifyNotStandaloneFunction · 0.90
transitiveScopesForFunction · 0.90
isPipeFunction · 0.90
verifyStandaloneImportFunction · 0.90
pipeDefsFunction · 0.90
triggerResourceLoadingFunction · 0.90

Calls 1

assertTypeDefinedFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…