Sha256: c6d3d21a55730e3994dd507e0756a0214bda983fe3aec41d1c3cbcca37a79fbd

Contents?: true

Size: 250 Bytes

Versions: 11

Compression:

Stored size: 250 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 M2
  include M1
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
typeprof-0.20.0 smoke/module3.rb
typeprof-0.15.3 smoke/module3.rb
typeprof-0.15.2 smoke/module3.rb
typeprof-0.15.1 smoke/module3.rb
typeprof-0.15.0 smoke/module3.rb
typeprof-0.14.1 smoke/module3.rb
typeprof-0.14.0 smoke/module3.rb
typeprof-0.13.0 smoke/module3.rb
typeprof-0.12.0 smoke/module3.rb
typeprof-0.11.0 smoke/module3.rb
typeprof-0.10.0 smoke/module3.rb