-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for anonymous functions (eval) #32
Labels
Comments
Is there currently ONE existing js stack parser which can handle stacks which contains eval lines? I don't found any. |
Any updates on this ? |
@cjaeriksson No, I'm afraid. |
Hmm yes, 8 years later, and I still can't find a library that can parse it (and the PR here was never completed) 😢 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@genielabs commented on Sun Jun 26 2016
Given an error stack like this one:
stackframe will currently ignore the eval
<anonymous>:32:7
at the end of the first stack element, which is the real source of the error at line 32, column 7.It will indeed report stack[0] with line 6851 and column 25.
@eriwen commented on Fri Nov 25 2016
@genielabs Stackframe itself handles
eval
origins as you cansetEvalOrigin(Stackframe)
. However,error-stack-parser
does not set eval origins yet, so I'm going to move this issue to that project. Thanks for submitting.The text was updated successfully, but these errors were encountered: