Class: T::Types::Base
- Inherits:
-
Object
show all
- Defined in:
- lib/types/types/base.rb
Direct Known Subclasses
Private::Types::NotTyped, Private::Types::StringHolder, Private::Types::TypeAlias, Private::Types::Void, AttachedClassType, ClassOf, Enum, FixedArray, FixedHash, Intersection, NoReturn, Proc, SelfType, Simple, TEnum, TypeParameter, TypeVariable, TypedEnumerable, Union, Untyped
Class Method Summary
collapse
Instance Method Summary
collapse
Class Method Details
.method_added(method_name) ⇒ Object
6
7
8
9
10
11
12
13
14
15
16
17
|
# File 'lib/types/types/base.rb', line 6
def self.method_added(method_name)
super(method_name)
if method_name == :subtype_of? && self != T::Types::Base
raise "`subtype_of?` should not be overridden. You probably want to override " \
"`subtype_of_single?` instead."
end
end
|
Instance Method Details
#==(other) ⇒ Object
Also known as:
eql?
#describe_obj(obj) ⇒ Object
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
# File 'lib/types/types/base.rb', line 110
def describe_obj(obj)
case obj
when nil, true, false
return "type #{obj.class}"
end
begin
if obj.method(:inspect).owner == Kernel
"type #{obj.class} with hash #{obj.hash}"
elsif T::Configuration.include_value_in_type_errors?
"type #{obj.class} with value #{T::Utils.string_truncate_middle(obj.inspect, 30, 30)}"
else
"type #{obj.class}"
end
rescue StandardError, SystemStackError
"type #{obj.class} with unprintable value"
end
end
|
#error_message_for_obj(obj) ⇒ Object
132
133
134
135
136
137
138
|
# File 'lib/types/types/base.rb', line 132
def error_message_for_obj(obj)
if valid?(obj)
nil
else
error_message(obj)
end
end
|
#error_message_for_obj_recursive(obj) ⇒ Object
140
141
142
143
144
145
146
|
# File 'lib/types/types/base.rb', line 140
def error_message_for_obj_recursive(obj)
if recursively_valid?(obj)
nil
else
error_message(obj)
end
end
|
#hash ⇒ Object
Equality methods (necessary for deduping types with `uniq`)
159
160
161
|
# File 'lib/types/types/base.rb', line 159
def hash
name.hash
end
|
#name ⇒ Object
Equality is based on name, so be sure the name reflects all relevant state when implementing.
37
38
39
|
# File 'lib/types/types/base.rb', line 37
def name
raise NotImplementedError
end
|
#recursively_valid?(obj) ⇒ Boolean
this will be redefined in certain subclasses
20
21
22
|
# File 'lib/types/types/base.rb', line 20
def recursively_valid?(obj)
valid?(obj)
end
|
#subtype_of?(t2) ⇒ Boolean
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
# File 'lib/types/types/base.rb', line 46
def subtype_of?(t2)
t1 = self
if t2.is_a?(T::Private::Types::TypeAlias)
t2 = t2.aliased_type
end
if t1.is_a?(T::Private::Types::TypeAlias)
return t1.aliased_type.subtype_of?(t2)
end
if t1.is_a?(T::Types::Union) return t1.types.all? {|t1_member| t1_member.subtype_of?(t2)}
end
if t2.is_a?(T::Types::Intersection) return t2.types.all? {|t2_member| t1.subtype_of?(t2_member)}
end
if t2.is_a?(T::Types::Union)
if t1.is_a?(T::Types::Intersection) return t2.types.any? {|t2_member| t1.subtype_of?(t2_member)} ||
t1.types.any? {|t1_member| t1_member.subtype_of?(t2)}
end
return t2.types.any? {|t2_member| t1.subtype_of?(t2_member)} end
if t1.is_a?(T::Types::Intersection) return t1.types.any? {|t1_member| t1_member.subtype_of?(t2)}
end
if t1.is_a?(T::Private::Types::Void)
return t2.is_a?(T::Private::Types::Void)
end
if t1.is_a?(T::Types::Untyped) || t2.is_a?(T::Types::Untyped)
return true
end
subtype_of_single?(t2)
end
|
#to_s ⇒ Object
106
107
108
|
# File 'lib/types/types/base.rb', line 106
def to_s
name
end
|
#valid?(obj) ⇒ Boolean
24
25
26
|
# File 'lib/types/types/base.rb', line 24
def valid?(obj)
raise NotImplementedError
end
|
#validate!(obj) ⇒ Object
152
153
154
155
|
# File 'lib/types/types/base.rb', line 152
def validate!(obj)
err = error_message_for_obj(obj)
raise TypeError.new(err) if err
end
|