A implementetion of class Method and UnboundMethod for mruby
p Enumerable.instance_method(:find_all).source_location
#=> ["mruby/mruby/mrblib/enum.rb", 148]
in build_config.rb
MRuby::Build.new do |conf|
enable_debug
conf.gem :mgem => "mruby-method"
# or
conf.gem :github => "ksss/mruby-method"
end
source_location
method need this configuration in build_config.rb
MRuby::Build.new do |conf|
enable_debug
end
Kernel#method
Kernel#singleton_method
Module#instance_method
Method#name
Method#call
Method#super_method
Method#arity
Method#unbind
Method#[]
Method#owner
Method#receiver
Method#parameters
Method#source_location
Method#to_proc
UnboundMethod#name
UnboundMethod#bind
UnboundMethod#super_method
UnboundMethod#arity
UnboundMethod#owner
UnboundMethod#parameters
UnboundMethod#source_location