Sha256: c576e53190b4b53e734341928977e5eaf9e100f9b18ad18633f7d94548be52ee

Contents?: true

Size: 425 Bytes

Versions: 793

Compression:

Stored size: 425 Bytes

Contents

# frozen_string_literal: true
# typed: true

# Holds a string. Useful for showing type aliases in error messages
class T::Private::Types::StringHolder < T::Types::Base
  attr_reader :string

  def initialize(string)
    @string = string
  end

  # @override Base
  def name
    string
  end

  # @override Base
  def valid?(obj)
    false
  end

  # @override Base
  private def subtype_of_single?(other)
    false
  end
end

Version data entries

793 entries across 793 versions & 1 rubygems

Version Path
sorbet-runtime-0.4.4270 lib/types/private/types/string_holder.rb
sorbet-runtime-0.4.4269 lib/types/private/types/string_holder.rb
sorbet-runtime-0.4.4263 lib/types/private/types/string_holder.rb
sorbet-runtime-0.4.4262 lib/types/private/types/string_holder.rb
sorbet-runtime-0.4.4261 lib/types/private/types/string_holder.rb
sorbet-runtime-0.4.4260 lib/types/private/types/string_holder.rb
sorbet-runtime-0.4.4259 lib/types/private/types/string_holder.rb
sorbet-runtime-0.4.4258 lib/types/private/types/string_holder.rb
sorbet-runtime-0.4.4257 lib/types/private/types/string_holder.rb
sorbet-runtime-0.4.4256 lib/types/private/types/string_holder.rb
sorbet-runtime-0.4.4255 lib/types/private/types/string_holder.rb
sorbet-runtime-0.4.4254 lib/types/private/types/string_holder.rb
sorbet-runtime-0.4.4253 lib/types/private/types/string_holder.rb