mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
f85906b679
- It can now deal with operands in the range of `OP_EXT*`.
- It can now call the same method as the variable name without arguments.
```ruby
def a
"Safe!"
end
a = "Auto!"
eval "a()" # call method `a`
```