Sha256: 5b6246d984baf32ee6a2a0a8eb0f13cbb7b8e8eebd4f590bc5572384a22070ee

Contents?: true

Size: 656 Bytes

Versions: 213

Compression:

Stored size: 656 Bytes

Contents

# frozen_string_literal: true
# typed: true

module T::Types
  # Modeling self-types properly at runtime would require additional tracking,
  # so at runtime we permit all values and rely on the static checker.
  class SelfType < Base

    def initialize(); end

    def build_type
      nil
    end

    # overrides Base
    def name
      "T.self_type"
    end

    # overrides Base
    def valid?(obj)
      true
    end

    # overrides Base
    private def subtype_of_single?(other)
      case other
      when SelfType
        true
      else
        false
      end
    end

    module Private
      INSTANCE = SelfType.new.freeze
    end
  end
end

Version data entries

213 entries across 213 versions & 1 rubygems

Version Path
sorbet-runtime-0.5.11766 lib/types/types/self_type.rb
sorbet-runtime-0.5.11765 lib/types/types/self_type.rb
sorbet-runtime-0.5.11763 lib/types/types/self_type.rb
sorbet-runtime-0.5.11761 lib/types/types/self_type.rb
sorbet-runtime-0.5.11758 lib/types/types/self_type.rb
sorbet-runtime-0.5.11755 lib/types/types/self_type.rb
sorbet-runtime-0.5.11751 lib/types/types/self_type.rb
sorbet-runtime-0.5.11746 lib/types/types/self_type.rb
sorbet-runtime-0.5.11742 lib/types/types/self_type.rb
sorbet-runtime-0.5.11734 lib/types/types/self_type.rb
sorbet-runtime-0.5.11725 lib/types/types/self_type.rb
sorbet-runtime-0.5.11718 lib/types/types/self_type.rb
sorbet-runtime-0.5.11717 lib/types/types/self_type.rb
sorbet-runtime-0.5.11711 lib/types/types/self_type.rb
sorbet-runtime-0.5.11710 lib/types/types/self_type.rb
sorbet-runtime-0.5.11709 lib/types/types/self_type.rb
sorbet-runtime-0.5.11708 lib/types/types/self_type.rb
sorbet-runtime-0.5.11707 lib/types/types/self_type.rb
sorbet-runtime-0.5.11704 lib/types/types/self_type.rb
sorbet-runtime-0.5.11699 lib/types/types/self_type.rb