class T::Types::NoReturn

The bottom type

Public Class Methods

new() click to toggle source
# File lib/types/types/noreturn.rb, line 8
def initialize; end

Public Instance Methods

name() click to toggle source

@override Base

# File lib/types/types/noreturn.rb, line 11
def name
  "T.noreturn"
end
valid?(obj) click to toggle source

@override Base

# File lib/types/types/noreturn.rb, line 16
def valid?(obj)
  false
end

Private Instance Methods

subtype_of_single?(other) click to toggle source

@override Base

# File lib/types/types/noreturn.rb, line 21
        def subtype_of_single?(other)
  true
end