Sha256: 9483d323e5a95c385a8b85c87f9b55109d9e1126ad10dab6e69cd0fdc8a504d5

Contents?: true

Size: 1.06 KB

Versions: 108

Compression:

Stored size: 1.06 KB

Contents

# frozen_string_literal: true
# typed: true

module T::Types
  # Validates that an object belongs to the specified class.
  class ClassOf < Base
    attr_reader :type

    def initialize(type)
      @type = type
    end

    def build_type
      nil
    end

    # overrides Base
    def name
      "T.class_of(#{@type})"
    end

    # overrides Base
    def valid?(obj)
      obj.is_a?(Module) && obj <= @type
    end

    # overrides Base
    def subtype_of_single?(other)
      case other
      when ClassOf
        @type <= other.type
      when Simple
        @type.is_a?(other.raw_type)
      when TypedClass
        true
      else
        false
      end
    end

    # overrides Base
    def describe_obj(obj)
      obj.inspect
    end

    # So that `T.class_of(...)[...]` syntax is valid.
    # Mirrors the definition of T::Generic#[] (generics are erased).
    #
    # We avoid simply writing `include T::Generic` because we don't want any of
    # the other methods to appear (`T.class_of(A).type_member` doesn't make sense)
    def [](*types)
      self
    end
  end
end

Version data entries

108 entries across 108 versions & 1 rubygems

Version Path
sorbet-runtime-0.5.11351 lib/types/types/class_of.rb
sorbet-runtime-0.5.11350 lib/types/types/class_of.rb
sorbet-runtime-0.5.11349 lib/types/types/class_of.rb
sorbet-runtime-0.5.11347 lib/types/types/class_of.rb
sorbet-runtime-0.5.11346 lib/types/types/class_of.rb
sorbet-runtime-0.5.11342 lib/types/types/class_of.rb
sorbet-runtime-0.5.11340 lib/types/types/class_of.rb
sorbet-runtime-0.5.11338 lib/types/types/class_of.rb
sorbet-runtime-0.5.11336 lib/types/types/class_of.rb
sorbet-runtime-0.5.11332 lib/types/types/class_of.rb
sorbet-runtime-0.5.11330 lib/types/types/class_of.rb
sorbet-runtime-0.5.11327 lib/types/types/class_of.rb
sorbet-runtime-0.5.11323 lib/types/types/class_of.rb
sorbet-runtime-0.5.11319 lib/types/types/class_of.rb
sorbet-runtime-0.5.11318 lib/types/types/class_of.rb
sorbet-runtime-0.5.11316 lib/types/types/class_of.rb
sorbet-runtime-0.5.11311 lib/types/types/class_of.rb
sorbet-runtime-0.5.11307 lib/types/types/class_of.rb
sorbet-runtime-0.5.11305 lib/types/types/class_of.rb
sorbet-runtime-0.5.11303 lib/types/types/class_of.rb