Sha256: 66178deae881a7b44ebd32a54ac07802b899dac0d6fcc9a92ec466288586dbf6

Contents?: true

Size: 449 Bytes

Versions: 166

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

166 entries across 166 versions & 1 rubygems

Version Path
sorbet-runtime-0.5.11545 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11537 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11535 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11532 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11531 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11528 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11525 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11520 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11519 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11518 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11517 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11514 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11511 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11506 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11505 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11504 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11501 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11500 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11495 lib/types/types/noreturn.rb
sorbet-runtime-0.5.11493 lib/types/types/noreturn.rb