We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
eval works:
eval
$ cat eval.mrb fiber = Fiber.new{ eval "Fiber.yield :yielded; :finished" } p fiber.resume p fiber.resume $ mruby eval.mrb :yielded :finished
instance_eval does not:
instance_eval
$ cat instance_eval.mrb fiber = Fiber.new{ instance_eval "Fiber.yield :yielded; :finished" } p fiber.resume p fiber.resume $ mruby instance_eval.mrb :yielded trace: [0] instance_eval.mrb:3 instance_eval.mrb:3: can't cross C function boundary (FiberError)
The text was updated successfully, but these errors were encountered:
f8b31a0
No branches or pull requests
eval
works:instance_eval
does not:The text was updated successfully, but these errors were encountered: