Sha256: 06ebfe088289e6cf40e9ee1865cfa69f24470b486e9119e4cfe0e8d7e157159e

Contents?: true

Size: 210 Bytes

Versions: 19

Compression:

Stored size: 210 Bytes

Contents

module M1
  def foo
    :foo
  end
end

module M2
  include M1
end

class C
  include M2
end

C.new.foo
__END__
# Classes
module M1
  def foo : -> :foo
end

module M2
  include M1
end

class C
  include M2
end

Version data entries

19 entries across 19 versions & 1 rubygems

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