(tView: TView, tNode: TNode, textRepresentation: string)
| 189 | * @param textRepresentation Text representation of the trigger to be used for debugging purposes. |
| 190 | */ |
| 191 | export function trackTriggerForDebugging(tView: TView, tNode: TNode, textRepresentation: string) { |
| 192 | const tDetails = getTDeferBlockDetails(tView, tNode); |
| 193 | tDetails.debug ??= {}; |
| 194 | tDetails.debug.triggers ??= new Set(); |
| 195 | tDetails.debug.triggers.add(textRepresentation); |
| 196 | } |
no test coverage detected
searching dependent graphs…