Skip to content

ksss/mruby-method

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

82 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mruby-method

Build Status

A implementetion of class Method and UnboundMethod for mruby

p Enumerable.instance_method(:find_all).source_location
#=> ["mruby/mruby/mrblib/enum.rb", 148]

https://raw.githubusercontent.com/ksss/mruby-method/master/find_all.png

Installation

in build_config.rb

MRuby::Build.new do |conf|
  enable_debug

  conf.gem :mgem => "mruby-method"
  # or
  conf.gem :github => "ksss/mruby-method"
end

Note

source_location method need this configuration in build_config.rb

MRuby::Build.new do |conf|
  enable_debug
end

Supported Methods

Kernel

  • Kernel#method
  • Kernel#singleton_method

Module

  • Module#instance_method

Method class

  • 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 class

  • UnboundMethod#name
  • UnboundMethod#bind
  • UnboundMethod#super_method
  • UnboundMethod#arity
  • UnboundMethod#owner
  • UnboundMethod#parameters
  • UnboundMethod#source_location

See also

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •