Class: RBS::Types::Tuple

Inherits:
Object
  • Object
show all
Defined in:
lib/rbs/types.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(types:, location:) ⇒ Tuple

Returns a new instance of Tuple.



438
439
440
441
# File 'lib/rbs/types.rb', line 438

def initialize(types:, location:)
  @types = types
  @location = location
end

Instance Attribute Details

#locationObject (readonly)

Returns the value of attribute location.



436
437
438
# File 'lib/rbs/types.rb', line 436

def location
  @location
end

#typesObject (readonly)

Returns the value of attribute types.



435
436
437
# File 'lib/rbs/types.rb', line 435

def types
  @types
end

Instance Method Details

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



443
444
445
# File 'lib/rbs/types.rb', line 443

def ==(other)
  other.is_a?(Tuple) && other.types == types
end

#each_type(&block) ⇒ Object



478
479
480
481
482
483
484
# File 'lib/rbs/types.rb', line 478

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

#free_variables(set = Set.new) ⇒ Object



453
454
455
456
457
458
459
# File 'lib/rbs/types.rb', line 453

def free_variables(set = Set.new)
  set.tap do
    types.each do |type|
      type.free_variables set
    end
  end
end

#has_classish_type?Boolean

Returns:

  • (Boolean)


508
509
510
# File 'lib/rbs/types.rb', line 508

def has_classish_type?
  each_type.any? {|type| type.has_classish_type? }
end

#has_self_type?Boolean

Returns:

  • (Boolean)


504
505
506
# File 'lib/rbs/types.rb', line 504

def has_self_type?
  each_type.any? {|type| type.has_self_type? }
end

#hashObject



449
450
451
# File 'lib/rbs/types.rb', line 449

def hash
  self.class.hash ^ types.hash
end

#map_type(&block) ⇒ Object



493
494
495
496
497
498
499
500
501
502
# File 'lib/rbs/types.rb', line 493

def map_type(&block)
  if block
    Tuple.new(
      types: types.map {|type| yield type },
      location: location
    )
  else
    enum_for :map_type
  end
end

#map_type_name(&block) ⇒ Object



486
487
488
489
490
491
# File 'lib/rbs/types.rb', line 486

def map_type_name(&block)
  Tuple.new(
    types: types.map {|type| type.map_type_name(&block) },
    location: location
  )
end

#sub(s) ⇒ Object



465
466
467
468
# File 'lib/rbs/types.rb', line 465

def sub(s)
  self.class.new(types: types.map {|ty| ty.sub(s) },
                 location: location)
end

#to_json(state = _ = nil) ⇒ Object



461
462
463
# File 'lib/rbs/types.rb', line 461

def to_json(state = _ = nil)
  { class: :tuple, types: types, location: location }.to_json(state)
end

#to_s(level = 0) ⇒ Object



470
471
472
473
474
475
476
# File 'lib/rbs/types.rb', line 470

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

#with_nonreturn_void?Boolean

Returns:

  • (Boolean)


512
513
514
# File 'lib/rbs/types.rb', line 512

def with_nonreturn_void?
  each_type.any? {|type| type.with_nonreturn_void? }
end