Sha256: 12a262354cb938ef3e375d60212ea399fbf654c2a8af3c9a14753f1ee009413f

Contents?: true

Size: 218 Bytes

Versions: 14

Compression:

Stored size: 218 Bytes

Contents

module M
  def foo
    :foo
  end
end

class C
  include M
end

module M
  def bar
    :bar
  end
end

C.new.foo
C.new.bar

__END__
# Classes
module M
  def foo: -> :foo
  def bar: -> :bar
end

class C
  include M
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
typeprof-0.20.0 smoke/module1.rb
typeprof-0.15.3 smoke/module1.rb
typeprof-0.15.2 smoke/module1.rb
typeprof-0.15.1 smoke/module1.rb
typeprof-0.15.0 smoke/module1.rb
typeprof-0.14.1 smoke/module1.rb
typeprof-0.14.0 smoke/module1.rb
typeprof-0.13.0 smoke/module1.rb
typeprof-0.12.0 smoke/module1.rb
typeprof-0.11.0 smoke/module1.rb
typeprof-0.10.0 smoke/module1.rb
typeprof-0.9.2 smoke/module1.rb
typeprof-0.9.1 smoke/module1.rb
typeprof-0.9.0 smoke/module1.rb