Sha256: fd37bbb6e007820597f920937f03e86c35018635637233b04edc9f765f15b343

Contents?: true

Size: 455 Bytes

Versions: 4

Compression:

Stored size: 455 Bytes

Contents

class Foo
  def initialize
    @array = []
    @hash = {}
  end

  def set
    @array << 1
    @array << "str"
    @array << :sym
    @hash[:a] = 1
    @hash[:b] = "str"
    @hash[:c] = :sym
  end

  attr_reader :array, :hash
end

Foo.new.array
Foo.new.hash
Foo.new.set

__END__
# Classes
class Foo
  attr_reader array : Array[:sym | Integer | String]
  attr_reader hash : {a: Integer, b: String, c: :sym}
  def initialize : -> {}
  def set : -> :sym
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
typeprof-0.5.3 smoke/ivar2.rb
typeprof-0.5.2 smoke/ivar2.rb
typeprof-0.5.1 smoke/ivar2.rb
typeprof-0.5.0 smoke/ivar2.rb