Module: RBS::Types::Application

Included in:
ClassInstance, Interface
Defined in:
lib/rbs/types.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#argsObject (readonly)

Returns the value of attribute args.



201
202
203
# File 'lib/rbs/types.rb', line 201

def args
  @args
end

#nameObject (readonly)

Returns the value of attribute name.



200
201
202
# File 'lib/rbs/types.rb', line 200

def name
  @name
end

Instance Method Details

#==(other) ⇒ Object Also known as: eql?



203
204
205
# File 'lib/rbs/types.rb', line 203

def ==(other)
  other.is_a?(self.class) && other.name == name && other.args == args
end

#each_type(&block) ⇒ Object



229
230
231
232
233
234
235
# File 'lib/rbs/types.rb', line 229

def each_type(&block)
  if block_given?
    args.each(&block)
  else
    enum_for :each_type
  end
end

#free_variables(set = Set.new) ⇒ Object



213
214
215
216
217
218
219
# File 'lib/rbs/types.rb', line 213

def free_variables(set = Set.new)
  set.tap do
    args.each do |arg|
      arg.free_variables(set)
    end
  end
end

#hashObject



209
210
211
# File 'lib/rbs/types.rb', line 209

def hash
  self.class.hash ^ name.hash ^ args.hash
end

#to_s(level = 0) ⇒ Object



221
222
223
224
225
226
227
# File 'lib/rbs/types.rb', line 221

def to_s(level = 0)
  if args.empty?
    name.to_s
  else
    "#{name}[#{args.join(", ")}]"
  end
end