• dearblue's avatar
    Fixed finding variables defined in the upper proc failed · 52b29f41
    dearblue authored
    If no new variable was defined in the `eval` method, the variable was hidden from the nested `eval` method.
    
    ```ruby
    a = 1
    p eval %(b = 2; eval %(a)) # => 1 (good)
    p eval %(eval %(a)) # => undefined method 'a' (NoMethodError)
    ```
    
    This issue has occurred since mruby 3.0.0.
    52b29f41
codegen.c 75.3 KB