Sha256: 1e0b80d669a354e6d687c7e96fa18ad0e51456148c8fdc965635b1a42e0320b4

Contents?: true

Size: 463 Bytes

Versions: 3

Compression:

Stored size: 463 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: -> Hash[bot, bot]
  def set: -> :sym
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
typeprof-0.9.2 smoke/ivar2.rb
typeprof-0.9.1 smoke/ivar2.rb
typeprof-0.9.0 smoke/ivar2.rb