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