Sha256: 9323e2ebd0dc5fe287a87630273068e79aac446a9d87325693b2ca23ab2d80a4

Contents?: true

Size: 567 Bytes

Versions: 14

Compression:

Stored size: 567 Bytes

Contents

A = 1

module Lib
  module Mod
  end
  class Base
  end
end

module App
  class Foo < Lib::Base
    include Lib::Mod
    CONST1 = Foo.new
    class Bar
      CONST2 = Bar.new
    end
  end

  CONST3 = Foo::Bar.new
  class Baz < App::Foo
    CONST4 = Foo::Bar.new
  end
end

__END__
# Classes
class Object
  A: Integer
end

module Lib
  module Mod
  end

  class Base
  end
end

module App
  CONST3: Foo::Bar

  class Foo < Lib::Base
    CONST1: Foo
    include Lib::Mod

    class Bar
      CONST2: Bar
    end
  end

  class Baz < Foo
    CONST4: Foo::Bar
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
typeprof-0.20.0 smoke/class-hierarchy.rb
typeprof-0.15.3 smoke/class-hierarchy.rb
typeprof-0.15.2 smoke/class-hierarchy.rb
typeprof-0.15.1 smoke/class-hierarchy.rb
typeprof-0.15.0 smoke/class-hierarchy.rb
typeprof-0.14.1 smoke/class-hierarchy.rb
typeprof-0.14.0 smoke/class-hierarchy.rb
typeprof-0.13.0 smoke/class-hierarchy.rb
typeprof-0.12.0 smoke/class-hierarchy.rb
typeprof-0.11.0 smoke/class-hierarchy.rb
typeprof-0.10.0 smoke/class-hierarchy.rb
typeprof-0.9.2 smoke/class-hierarchy.rb
typeprof-0.9.1 smoke/class-hierarchy.rb
typeprof-0.9.0 smoke/class-hierarchy.rb