Sha256: 1cb2a4f4703a8d4616d54ea8e087c59c216c27f3b7a0c206a56b5c14d7c1cd6c

Contents?: true

Size: 469 Bytes

Versions: 213

Compression:

Stored size: 469 Bytes

Contents

# frozen_string_literal: true
# typed: true

module T::Types
  # A dynamic type, which permits whatever
  class Untyped < Base

    def initialize; end

    def build_type
      nil
    end

    # overrides Base
    def name
      "T.untyped"
    end

    # overrides Base
    def valid?(obj)
      true
    end

    # overrides Base
    private def subtype_of_single?(other)
      true
    end

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

Version data entries

213 entries across 213 versions & 1 rubygems

Version Path
sorbet-runtime-0.5.11316 lib/types/types/untyped.rb
sorbet-runtime-0.5.11311 lib/types/types/untyped.rb
sorbet-runtime-0.5.11307 lib/types/types/untyped.rb
sorbet-runtime-0.5.11305 lib/types/types/untyped.rb
sorbet-runtime-0.5.11303 lib/types/types/untyped.rb
sorbet-runtime-0.5.11301 lib/types/types/untyped.rb
sorbet-runtime-0.5.11295 lib/types/types/untyped.rb
sorbet-runtime-0.5.11294 lib/types/types/untyped.rb
sorbet-runtime-0.5.11293 lib/types/types/untyped.rb
sorbet-runtime-0.5.11292 lib/types/types/untyped.rb
sorbet-runtime-0.5.11288 lib/types/types/untyped.rb
sorbet-runtime-0.5.11287 lib/types/types/untyped.rb
sorbet-runtime-0.5.11286 lib/types/types/untyped.rb
sorbet-runtime-0.5.11285 lib/types/types/untyped.rb
sorbet-runtime-0.5.11284 lib/types/types/untyped.rb
sorbet-runtime-0.5.11282 lib/types/types/untyped.rb
sorbet-runtime-0.5.11279 lib/types/types/untyped.rb
sorbet-runtime-0.5.11276 lib/types/types/untyped.rb
sorbet-runtime-0.5.11274 lib/types/types/untyped.rb
sorbet-runtime-0.5.11268 lib/types/types/untyped.rb