module RBS::Types::SelfTypeBindingHelper

Public Instance Methods

self_type_binding_to_s(t) click to toggle source
# File rbs-3.1.0/lib/rbs/types.rb, line 1080
def self_type_binding_to_s(t)
  if t
    "[self: #{t}] "
  else
    ""
  end
end