Sha256: b9a0be20c68b177288295099a75b99cbead74a09cbae7bc316d122c9ac17920d

Contents?: true

Size: 267 Bytes

Versions: 13

Compression:

Stored size: 267 Bytes

Contents

module M2
  def foo
    :m2_foo
  end
end

module M1
  extend M2

  def foo
    :m1_foo
  end
end

class C
  extend M1
end

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

module M1
  extend M2
  def foo : -> :m1_foo
end

class C
  extend M1
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
typeprof-0.8.0 smoke/module4.rb
typeprof-0.7.0 smoke/module4.rb
typeprof-0.6.1 smoke/module4.rb
typeprof-0.6.0 smoke/module4.rb
typeprof-0.5.4 smoke/module4.rb
typeprof-0.5.3 smoke/module4.rb
typeprof-0.5.2 smoke/module4.rb
typeprof-0.5.1 smoke/module4.rb
typeprof-0.5.0 smoke/module4.rb
typeprof-0.4.2 smoke/module4.rb
typeprof-0.4.1 smoke/module4.rb
typeprof-0.4.0 smoke/module4.rb
typeprof-0.3.0 smoke/module4.rb