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
A StackFrame can actually have a file location and a location within an eval() call.
For example, this stack:
Error: message string
at baz (eval at foo (eval at speak (http://localhost:8000/test/functional/testeval.html:26:22)), <anonymous>:1:30)
at foo (eval at speak (http://localhost:8000/test/functional/testeval.html:26:22), <anonymous>:2:96)
at eval (eval at speak (http://localhost:8000/test/functional/testeval.html:26:22), <anonymous>:4:18)
at Object.speak (http://localhost:8000/test/functional/testeval.html:26:17)
at http://localhost:8000/test/functional/testeval.html:33:13
Notice the locations within the eval'd code, represented by , <anonymous>:2:96). We may want to represent this using a parent/child relationship.
A StackFrame can actually have a file location and a location within an
eval()call.For example, this stack:
Notice the locations within the eval'd code, represented by
, <anonymous>:2:96). We may want to represent this using a parent/child relationship.