Skip to content
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

JuliaInterpreter hangs when handling errors on v1.11 #610

Closed
aviatesk opened this issue Jan 9, 2024 · 0 comments · Fixed by #614
Closed

JuliaInterpreter hangs when handling errors on v1.11 #610

aviatesk opened this issue Jan 9, 2024 · 0 comments · Fixed by #614

Comments

@aviatesk
Copy link
Member

aviatesk commented Jan 9, 2024

MRE:

julia> function func()
           i::Int = 0
           try
               undefcall()
           finally
               i += 1
               println("finally calause: ", i)
           end
       end

julia> @interpret func()
...
finally calause: 2461
finally calause: 2462
finally calause: 2463
finally calause: 2464
finally calause: 2465
finally calause: 2466
finally calause: 2467
finally calause: 2468
finally calause: 2469
finally calause: 2470
finally calause: 2471
...

We need to update our interpretation logic against JuliaLang/julia#52245.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant