(callback: T, source: string)
| 42 | export const ZONE_SYMBOL_PREFIX = __symbol__(''); |
| 43 | |
| 44 | export function wrapWithCurrentZone<T extends Function>(callback: T, source: string): T { |
| 45 | return Zone.current.wrap(callback, source); |
| 46 | } |
| 47 | |
| 48 | export function scheduleMacroTaskWithCurrentZone( |
| 49 | source: string, |
no test coverage detected
searching dependent graphs…