-
Notifications
You must be signed in to change notification settings - Fork 326
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
Atoms with lazy fields cause StackOverflow in chrome inspector #7138
Comments
Still reproducible on latest develop |
The underlying problem is in infinite recursion in
|
Pavel Marek reports a new STANDUP for today (2025-02-10): Progress: - Finally merged #12223 - let's keep an eye for upcomming nightlies.
|
Pavel Marek reports a new STANDUP for today (2025-02-11): Progress: - Spotted bench regressions:
|
Pavel Marek reports a new STANDUP for yesterday (2025-02-12): Progress: - Invocation of methods on type via interop does not have to be consistent with pure Enso invocation:
|
Pavel Marek reports a new STANDUP for today (2025-02-13): Progress: - Revival of the VueJS benchmarks SPA.
|
To reproduce, run
enso --in-project test/tests --inspect --run test/Tests/src/Runtime/Lazy_Generator_Spec.enso
on:https://github.com/enso-org/enso/blob/5f44805fc59c94095525d77ed113adb9b15c0bf4/test/Tests/src/Runtime/Lazy_Generator_Spec.enso
Add a breakpoint into the block under
Test.specify
.The best approach is probably to modify
SuspendFieldGetterNode.java
such that it knows that it is called from a debugger, and if so, it will not try to evaluate the getter, but instead just return the thunk.The text was updated successfully, but these errors were encountered: