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.



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

def args
  @args
end

#nameObject (readonly)

Returns the value of attribute name.



198
199
200
# File 'lib/rbs/types.rb', line 198

def name
  @name
end

Instance Method Details

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



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

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

#each_type(&block) ⇒ Object



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

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

#free_variables(set = Set.new) ⇒ Object



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

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

#hashObject



207
208
209
# File 'lib/rbs/types.rb', line 207

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

#to_s(level = 0) ⇒ Object



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

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