Sha256: b53035823629667043285e2b6c3b30c5d1b4f4a89a77b16b40739fd508979132

Contents?: true

Size: 531 Bytes

Versions: 14

Compression:

Stored size: 531 Bytes

Contents

CONST = 1

class Foo
  CONST = "str"
  class Bar
    def get1
      CONST
    end

    def get2
      ::CONST
    end

    def get3
      Object::CONST
    end
  end
end

class Foo::Bar
  def get4
    CONST
  end
end

Foo::Bar.new.get1 # String
Foo::Bar.new.get2 # Integer
Foo::Bar.new.get3 # Integer
Foo::Bar.new.get4 # Integer

__END__
# Classes
class Object
  CONST: Integer
end

class Foo
  CONST: String

  class Bar
    def get1: -> String
    def get2: -> Integer
    def get3: -> Integer
    def get4: -> Integer
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

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