Sha256: 0c1a146856e46f189e2471a32aa68157fcfae4cc6000f9d7b2ee7c1c57879fb6

Contents?: true

Size: 1.31 KB

Versions: 84

Compression:

Stored size: 1.31 KB

Contents

# frozen_string_literal: true
# typed: true

module T::Types
  # Defines the type of a proc (a ruby callable). At runtime, only
  # validates that the value is a `::Proc`.
  #
  # At present, we only support fixed-arity procs with no optional or
  # keyword arguments.
  class Proc < Base
    def initialize(arg_types, returns)
      @inner_arg_types = arg_types
      @inner_returns = returns
    end

    def arg_types
      @arg_types ||= @inner_arg_types.transform_values do |raw_type|
        T::Utils.coerce(raw_type)
      end
    end

    def returns
      @returns ||= T::Utils.coerce(@inner_returns)
    end

    def build_type
      arg_types
      returns
      nil
    end

    # overrides Base
    def name
      args = []
      arg_types.each do |k, v|
        args << "#{k}: #{v.name}"
      end
      "T.proc.params(#{args.join(', ')}).returns(#{returns})"
    end

    # overrides Base
    def valid?(obj)
      obj.is_a?(::Proc)
    end

    # overrides Base
    private def subtype_of_single?(other)
      case other
      when self.class
        if arg_types.size != other.arg_types.size
          return false
        end
        arg_types.values.zip(other.arg_types.values).all? do |a, b|
          b.subtype_of?(a)
        end && returns.subtype_of?(other.returns)
      else
        false
      end
    end
  end
end

Version data entries

84 entries across 84 versions & 1 rubygems

Version Path
sorbet-runtime-0.5.11301 lib/types/types/proc.rb
sorbet-runtime-0.5.11295 lib/types/types/proc.rb
sorbet-runtime-0.5.11294 lib/types/types/proc.rb
sorbet-runtime-0.5.11293 lib/types/types/proc.rb
sorbet-runtime-0.5.11292 lib/types/types/proc.rb
sorbet-runtime-0.5.11288 lib/types/types/proc.rb
sorbet-runtime-0.5.11287 lib/types/types/proc.rb
sorbet-runtime-0.5.11286 lib/types/types/proc.rb
sorbet-runtime-0.5.11285 lib/types/types/proc.rb
sorbet-runtime-0.5.11284 lib/types/types/proc.rb
sorbet-runtime-0.5.11282 lib/types/types/proc.rb
sorbet-runtime-0.5.11279 lib/types/types/proc.rb
sorbet-runtime-0.5.11276 lib/types/types/proc.rb
sorbet-runtime-0.5.11274 lib/types/types/proc.rb
sorbet-runtime-0.5.11268 lib/types/types/proc.rb
sorbet-runtime-0.5.11267 lib/types/types/proc.rb
sorbet-runtime-0.5.11266 lib/types/types/proc.rb
sorbet-runtime-0.5.11264 lib/types/types/proc.rb
sorbet-runtime-0.5.11262 lib/types/types/proc.rb
sorbet-runtime-0.5.11261 lib/types/types/proc.rb