Sha256: 43e90ebeb1676b8a6b92891ac02fae29e4704d013d7d0650ec3a1eca1c079f34

Contents?: true

Size: 397 Bytes

Versions: 7

Compression:

Stored size: 397 Bytes

Contents

class Conference
  # @dynamic title, year
  attr_reader :title
  attr_reader :year

  def initialize(title:, year:)
    @title = title
    @year = year
  end
end

Conference.new()

Konference.new()



# @type var foo: Konference

foo = Conference.new

class Conference12
  class Integer
  end
end

class HogeHoge
  def foo(...)
    bar(self, ...).to_s
  end
end


conference = nil #: Conference?

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
steep-1.9.4 sample/lib/conference.rb
steep-1.9.3 sample/lib/conference.rb
steep-1.9.2 sample/lib/conference.rb
steep-1.9.1 sample/lib/conference.rb
steep-1.9.0 sample/lib/conference.rb
steep-1.9.0.dev.2 sample/lib/conference.rb
steep-1.9.0.dev.1 sample/lib/conference.rb