mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
b83ff8ccd8
from https://github.com/ksss/mruby-method/commit/0837a0b507a5b4cdf8a1f1039ee371cee4e3b7fb
21 lines
195 B
Ruby
21 lines
195 B
Ruby
class Method
|
|
def to_proc
|
|
m = self
|
|
lambda { |*args, &b|
|
|
m.call(*args, &b)
|
|
}
|
|
end
|
|
|
|
def owner
|
|
@owner
|
|
end
|
|
|
|
def receiver
|
|
@recv
|
|
end
|
|
|
|
def name
|
|
@name
|
|
end
|
|
end
|