Watson1978
12/21/2018 - 1:37 AM

method.d

ruby$target:::method-entry
{
  printf("method: %s#%s\n", copyinstr(arg0), copyinstr(arg1));
}
class Foo
  def hello
    puts 1 + 2
  end
end

Foo.new.hello