Sha256: 342d2a3694f1611f79502eb76161241a60993db2f22fea5120ddba026f1b805c

Contents?: true

Size: 220 Bytes

Versions: 19

Compression:

Stored size: 220 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

19 entries across 19 versions & 1 rubygems

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