Class: T::Types::SelfType

Inherits:
Base
  • Object
show all
Defined in:
lib/types/types/self_type.rb

Overview

Modeling self-types properly at runtime would require additional tracking, so at runtime we permit all values and rely on the static checker.

Instance Method Summary collapse

Methods inherited from Base

#==, #describe_obj, #error_message_for_obj, #hash, method_added, #subtype_of?, #to_s, #validate!

Constructor Details

#initializeSelfType

Returns a new instance of SelfType.



9
# File 'lib/types/types/self_type.rb', line 9

def initialize(); end

Instance Method Details

#nameObject



12
13
14
# File 'lib/types/types/self_type.rb', line 12

def name
  "T.self_type"
end

#valid?(obj) ⇒ Boolean

Returns:



17
18
19
# File 'lib/types/types/self_type.rb', line 17

def valid?(obj)
  true
end