Sha256: 66178deae881a7b44ebd32a54ac07802b899dac0d6fcc9a92ec466288586dbf6

Contents?: true

Size: 449 Bytes

Versions: 167

Compression:

Stored size: 449 Bytes

Contents

# frozen_string_literal: true
# typed: true

module T::Types
  # The bottom type
  class NoReturn < Base
    def initialize; end

    def build_type
      nil
    end

    # overrides Base
    def name
      "T.noreturn"
    end

    # overrides Base
    def valid?(obj)
      false
    end

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

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

Version data entries

167 entries across 167 versions & 1 rubygems

Version Path
sorbet-runtime-0.5.11255 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11249 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11247 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11238 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11237 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11234 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11230 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11226 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11223 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11222 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11221 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11219 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11218 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11216 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11214 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11213 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11212 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11205 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11200 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11193 lib/types/types/noreturn.rb