Sha256: 106cb88c621bab5ea95e249888346be7df08455e54fed1329526803961247c2e

Contents?: true

Size: 624 Bytes

Versions: 242

Compression:

Stored size: 624 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

    # @override Base
    def name
      "T.self_type"
    end

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

    # @override 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

242 entries across 242 versions & 1 rubygems

Version Path
sorbet-runtime-0.5.5929 lib/types/types/self_type.rb
sorbet-runtime-0.5.5924 lib/types/types/self_type.rb
sorbet-runtime-0.5.5923 lib/types/types/self_type.rb
sorbet-runtime-0.5.5920 lib/types/types/self_type.rb
sorbet-runtime-0.5.5916 lib/types/types/self_type.rb
sorbet-runtime-0.5.5915 lib/types/types/self_type.rb
sorbet-runtime-0.5.5913 lib/types/types/self_type.rb
sorbet-runtime-0.5.5912 lib/types/types/self_type.rb
sorbet-runtime-0.5.5911 lib/types/types/self_type.rb
sorbet-runtime-0.5.5909 lib/types/types/self_type.rb
sorbet-runtime-0.5.5903 lib/types/types/self_type.rb
sorbet-runtime-0.5.5898 lib/types/types/self_type.rb
sorbet-runtime-0.5.5895 lib/types/types/self_type.rb
sorbet-runtime-0.5.5891 lib/types/types/self_type.rb
sorbet-runtime-0.5.5890 lib/types/types/self_type.rb
sorbet-runtime-0.5.5888 lib/types/types/self_type.rb
sorbet-runtime-0.5.5883 lib/types/types/self_type.rb
sorbet-runtime-0.5.5881 lib/types/types/self_type.rb
sorbet-runtime-0.5.5880 lib/types/types/self_type.rb
sorbet-runtime-0.5.5879 lib/types/types/self_type.rb