You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
Inline TypeScript-generated source maps work fine in most situations, but if Zone catches an error during async processing (such as an RxJs subscribe handler), I get an error that isn't leveraging the source maps. E.g.:
zone.js:569 Unhandled Promise rejection: Cannot read property 'not' of undefined ; Zone: ProxyZone ; Task: Promise.then ; Value: TypeError: Cannot read property 'not' of undefined
at eval (http://localhost:9876/base/dist/dev/app/charts/components/plotly/base-plotly-chart.component.js:92:62)
at Array.forEach (native)
at eval (http://localhost:9876/base/dist/dev/app/charts/components/plotly/base-plotly-chart.component.js:86:54)
at Array.forEach (native)
at eval (http://localhost:9876/base/dist/dev/app/charts/components/plotly/base-plotly-chart.component.js:82:47)
at Array.forEach (native)
...etc...
Is this a bug with Zone? Or is this expected, and Zone currently just can't map the source of the error back to the TS file?
The text was updated successfully, but these errors were encountered:
I saw the existing issue related to long-stack-trace, but this happens whether or not long-stack-trace is being used. I'm using Angular 4.0.0 and Zone 0.8.5.
Inline TypeScript-generated source maps work fine in most situations, but if Zone catches an error during async processing (such as an RxJs subscribe handler), I get an error that isn't leveraging the source maps. E.g.:
Is this a bug with Zone? Or is this expected, and Zone currently just can't map the source of the error back to the TS file?
The text was updated successfully, but these errors were encountered: