Sha256: ee74c1a999ed5b3608c2d8556b8d37d4e9908a3bd04e5c3dd0e3ac2b0e78d676

Contents?: true

Size: 252 Bytes

Versions: 19

Compression:

Stored size: 252 Bytes

Contents

module M1
  def foo
    :m1
  end
end

module M2
  def foo
    :m2
  end
end

class C
  include M1
  include M2
end

C.new.foo

__END__
# Classes
module M1
  def foo : -> :m1
end

module M2
  def foo : -> :m2
end

class C
  include M1
  include M2
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
typeprof-0.8.0 smoke/module3.rb
typeprof-0.7.0 smoke/module3.rb
typeprof-0.6.1 smoke/module3.rb
typeprof-0.6.0 smoke/module3.rb
typeprof-0.5.4 smoke/module3.rb
typeprof-0.5.3 smoke/module3.rb
typeprof-0.5.2 smoke/module3.rb
typeprof-0.5.1 smoke/module3.rb
typeprof-0.5.0 smoke/module3.rb
typeprof-0.4.2 smoke/module3.rb
typeprof-0.4.1 smoke/module3.rb
typeprof-0.4.0 smoke/module3.rb
typeprof-0.3.0 smoke/module3.rb
typeprof-0.2.0 smoke/module3.rb
typeprof-0.1.4 smoke/module3.rb
typeprof-0.1.3 smoke/module3.rb
typeprof-0.1.2 smoke/module3.rb
typeprof-0.1.1 smoke/module3.rb
typeprof-0.1.0 smoke/module3.rb