Files
mruby-mruby/mrbgems/mruby-binding/mrblib/binding.rb
T
dearblue 792f6ac670 Adjustment of the current HEAD and bindings, and separation
Make changes to make `Binding` work.
At the same time, it separates `Binding#eval`, which depends on `mruby-eval`, from `mruby-binding-core`.
2021-02-22 23:32:18 +09:00

6 lines
83 B
Ruby

class Binding
def eval(expr, *args)
Kernel.eval(expr, self, *args)
end
end