Sha256: 0347a4d999f36823d14e4d2161d25c5046993e55beee49dbe454fd1c7ded7ef6

Contents?: true

Size: 204 Bytes

Versions: 8

Compression:

Stored size: 204 Bytes

Contents

class Human
  define_method(:fo) { }
  
  [:a, :b].each { |m|
    define_method(m) { }
  }
end

Human.new.a
Human.new.b

__END__
# Classes
class Human
  def fo: -> nil
  def a: -> nil
  def b: -> nil
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
typeprof-0.20.0 smoke/define_method7.rb
typeprof-0.15.3 smoke/define_method7.rb
typeprof-0.15.2 smoke/define_method7.rb
typeprof-0.15.1 smoke/define_method7.rb
typeprof-0.15.0 smoke/define_method7.rb
typeprof-0.14.1 smoke/define_method7.rb
typeprof-0.14.0 smoke/define_method7.rb
typeprof-0.13.0 smoke/define_method7.rb