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
10 lines
205 B
Ruby
10 lines
205 B
Ruby
module Kernel
|
|
def singleton_method(name)
|
|
m = method(name)
|
|
if m.owner != singleton_class
|
|
raise NameError, "undefined method `#{name}' for class `#{singleton_class}'"
|
|
end
|
|
m
|
|
end
|
|
end
|