class RBS::Types::Interface

Attributes

location[R]

Public Class Methods

new(name:, args:, location:) click to toggle source
# File rbs-1.4.0/lib/rbs/types.rb, line 242
def initialize(name:, args:, location:)
  @name = name
  @args = args
  @location = location
end

Public Instance Methods

map_type_name() { |name, location, self| ... } click to toggle source
# File rbs-1.4.0/lib/rbs/types.rb, line 258
def map_type_name(&block)
  Interface.new(
    name: yield(name, location, self),
    args: args.map {|type| type.map_type_name(&block) },
    location: location
  )
end
sub(s) click to toggle source
# File rbs-1.4.0/lib/rbs/types.rb, line 252
def sub(s)
  self.class.new(name: name,
                 args: args.map {|ty| ty.sub(s) },
                 location: location)
end
to_json(state = _ = nil) click to toggle source
# File rbs-1.4.0/lib/rbs/types.rb, line 248
def to_json(state = _ = nil)
  { class: :interface, name: name, args: args, location: location }.to_json(state)
end