Replies: 1 comment
-
In the async version (the one causing the stack-overflow) if one changes the CODE_TO_EVAL to something trivial then it works: window.CODE_TO_EVAL_SIMPLE = `
puts "One"
puts "Two"
puts "Three"
`; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Basically I'm evaluating some Ruby code asynchronously and using a line-handler (TracePoint).
In Chrome this results in:
Not evaluating it "async", however, runs just fine:
(the
async
,await
on JavaScript are gone)What's going on? I am doing anything wrong?
Any ideas?
Beta Was this translation helpful? Give feedback.
All reactions