( type: Type<any> | AbstractType<any>, debugInfo: ClassDebugInfo, )
| 16 | * This runtime is guarded by ngDevMode flag. |
| 17 | */ |
| 18 | export 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 | } |
no test coverage detected
searching dependent graphs…