mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
792f6ac670
Make changes to make `Binding` work. At the same time, it separates `Binding#eval`, which depends on `mruby-eval`, from `mruby-binding-core`.
6 lines
83 B
Ruby
6 lines
83 B
Ruby
class Binding
|
|
def eval(expr, *args)
|
|
Kernel.eval(expr, self, *args)
|
|
end
|
|
end
|