MCPcopy Index your code
hub / github.com/angular/angular / ɵsetClassDebugInfo

Function ɵsetClassDebugInfo

packages/core/src/render3/debug/set_debug_info.ts:18–26  ·  view source on GitHub ↗
(
  type: Type<any> | AbstractType<any>,
  debugInfo: ClassDebugInfo,
)

Source from the content-addressed store, hash-verified

16 * This runtime is guarded by ngDevMode flag.
17 */
18export function ɵsetClassDebugInfo(
19 type: Type<any> | AbstractType<any>,
20 debugInfo: ClassDebugInfo,
21): void {
22 const def = getComponentDef(type);
23 if (def !== null) {
24 def.debugInfo = debugInfo;
25 }
26}

Callers 4

component_spec.tsFile · 0.90

Calls 1

getComponentDefFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…