* Extend the Error with additional fields for rewritten stack frames
| 50 | * Extend the Error with additional fields for rewritten stack frames |
| 51 | */ |
| 52 | interface Error { |
| 53 | /** |
| 54 | * Stack trace where extra frames have been removed and zone names added. |
| 55 | */ |
| 56 | zoneAwareStack?: string; |
| 57 | |
| 58 | /** |
| 59 | * Original stack trace with no modifications |
| 60 | */ |
| 61 | originalStack?: string; |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | export function loadZone(): ZoneType { |
no outgoing calls
no test coverage detected
searching dependent graphs…