Class: RBS::MethodType
Relationships & Source Files | |
Inherits: | Object |
Defined in: | lib/rbs/method_type.rb |
Class Method Summary
Instance Attribute Summary
- #block readonly
- #has_classish_type? ⇒ Boolean readonly
- #has_self_type? ⇒ Boolean readonly
- #location readonly
- #type readonly
- #type_params readonly
- #with_nonreturn_void? ⇒ Boolean readonly
Instance Method Summary
Constructor Details
.new(type_params:, type:, block:, location:) ⇒ MethodType
# File 'lib/rbs/method_type.rb', line 10
def initialize(type_params:, type:, block:, location:) @type_params = type_params @type = type @block = block @location = location end
Instance Attribute Details
#block (readonly)
[ GitHub ]# File 'lib/rbs/method_type.rb', line 7
attr_reader :block
#has_classish_type? ⇒ Boolean
(readonly)
[ GitHub ]
#has_self_type? ⇒ Boolean
(readonly)
[ GitHub ]
#location (readonly)
[ GitHub ]# File 'lib/rbs/method_type.rb', line 8
attr_reader :location
#type (readonly)
[ GitHub ]# File 'lib/rbs/method_type.rb', line 6
attr_reader :type
#type_params (readonly)
[ GitHub ]# File 'lib/rbs/method_type.rb', line 5
attr_reader :type_params
#with_nonreturn_void? ⇒ Boolean
(readonly)
[ GitHub ]
Instance Method Details
#==(other)
[ GitHub ]# File 'lib/rbs/method_type.rb', line 17
def ==(other) other.is_a?(MethodType) && other.type_params == type_params && other.type == type && other.block == block end
#each_type(&block)
[ GitHub ]#free_variables(set = Set.new)
[ GitHub ]# File 'lib/rbs/method_type.rb', line 57
def free_variables(set = Set.new) type.free_variables(set) block&.type&.free_variables(set) set.subtract(type_param_names) end
#map_type(&block)
[ GitHub ]#map_type_bound(&block)
[ GitHub ]# File 'lib/rbs/method_type.rb', line 72
def map_type_bound(&block) if type_params.empty? self else self.update( type_params: type_params.map {|param| param.map_type(&block) } ) end end
#sub(s)
[ GitHub ]# File 'lib/rbs/method_type.rb', line 33
def sub(s) sub = s.without(*type_param_names) self.class.new( type_params: type_params.map do |param| param.map_type do |bound| bound.map_type {|ty| ty.sub(sub) } end end, type: type.sub(sub), block: block&.sub(sub), location: location ) end
#to_json(state = _ = nil)
[ GitHub ]# File 'lib/rbs/method_type.rb', line 24
def to_json(state = _ = nil) { type_params: type_params, type: type, block: block, location: location }.to_json(state) end
#to_s
[ GitHub ]# File 'lib/rbs/method_type.rb', line 98
def to_s block_self_binding = Types::SelfTypeBindingHelper.self_type_binding_to_s(block&.self_type) s = case when (b = block) && b.required "(#{type.param_to_s}) { (#{b.type.param_to_s}) #{block_self_binding}-> #{b.type.return_to_s} } -> #{type.return_to_s}" when b = block "(#{type.param_to_s}) ?{ (#{b.type.param_to_s}) #{block_self_binding}-> #{b.type.return_to_s} } -> #{type.return_to_s}" else "(#{type.param_to_s}) -> #{type.return_to_s}" end if type_params.empty? s else "[#{type_params.join(", ")}] #{s}" end end
#type_param_names
[ GitHub ]# File 'lib/rbs/method_type.rb', line 117
def type_param_names type_params.map(&:name) end
#update(type_params: self.type_params, type: self.type, block: self.block, location: self.location)
[ GitHub ]# File 'lib/rbs/method_type.rb', line 48
def update(type_params: self.type_params, type: self.type, block: self.block, location: self.location) self.class.new( type_params: type_params, type: type, block: block, location: location ) end