forked from phpstan/phpstan-src
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConditionalTypeTrait.php
300 lines (235 loc) · 6.97 KB
/
ConditionalTypeTrait.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
<?php declare(strict_types = 1);
namespace PHPStan\Type\Traits;
use PHPStan\Reflection\ClassMemberAccessAnswerer;
use PHPStan\Reflection\ConstantReflection;
use PHPStan\Reflection\MethodReflection;
use PHPStan\Reflection\PropertyReflection;
use PHPStan\Reflection\Type\UnresolvedMethodPrototypeReflection;
use PHPStan\Reflection\Type\UnresolvedPropertyPrototypeReflection;
use PHPStan\TrinaryLogic;
use PHPStan\Type\BooleanType;
use PHPStan\Type\CompoundType;
use PHPStan\Type\Generic\TemplateTypeMap;
use PHPStan\Type\Type;
use PHPStan\Type\TypeCombinator;
trait ConditionalTypeTrait
{
private Type $if;
private Type $else;
private ?Type $result = null;
public function accepts(Type $type, bool $strictTypes): TrinaryLogic
{
return $this->getResult()->accepts($type, $strictTypes);
}
public function isSuperTypeOf(Type $type): TrinaryLogic
{
return $this->getResult()->isSuperTypeOf($type);
}
public function canAccessProperties(): TrinaryLogic
{
return $this->getResult()->canAccessConstants();
}
public function hasProperty(string $propertyName): TrinaryLogic
{
return $this->getResult()->hasProperty($propertyName);
}
public function getProperty(string $propertyName, ClassMemberAccessAnswerer $scope): PropertyReflection
{
return $this->getResult()->getProperty($propertyName, $scope);
}
public function getUnresolvedPropertyPrototype(string $propertyName, ClassMemberAccessAnswerer $scope): UnresolvedPropertyPrototypeReflection
{
return $this->getResult()->getUnresolvedPropertyPrototype($propertyName, $scope);
}
public function canCallMethods(): TrinaryLogic
{
return $this->getResult()->canCallMethods();
}
public function hasMethod(string $methodName): TrinaryLogic
{
return $this->getResult()->hasMethod($methodName);
}
public function getMethod(string $methodName, ClassMemberAccessAnswerer $scope): MethodReflection
{
return $this->getResult()->getMethod($methodName, $scope);
}
public function getUnresolvedMethodPrototype(string $methodName, ClassMemberAccessAnswerer $scope): UnresolvedMethodPrototypeReflection
{
return $this->getResult()->getUnresolvedMethodPrototype($methodName, $scope);
}
public function canAccessConstants(): TrinaryLogic
{
return $this->getResult()->canAccessConstants();
}
public function hasConstant(string $constantName): TrinaryLogic
{
return $this->getResult()->hasConstant($constantName);
}
public function getConstant(string $constantName): ConstantReflection
{
return $this->getResult()->getConstant($constantName);
}
public function isIterable(): TrinaryLogic
{
return $this->getResult()->isIterable();
}
public function isIterableAtLeastOnce(): TrinaryLogic
{
return $this->getResult()->isIterableAtLeastOnce();
}
public function getIterableKeyType(): Type
{
return $this->getResult()->getIterableKeyType();
}
public function getIterableValueType(): Type
{
return $this->getResult()->getIterableValueType();
}
public function isArray(): TrinaryLogic
{
return $this->getResult()->isArray();
}
public function isOffsetAccessible(): TrinaryLogic
{
return $this->getResult()->isOffsetAccessible();
}
public function hasOffsetValueType(Type $offsetType): TrinaryLogic
{
return $this->getResult()->hasOffsetValueType($offsetType);
}
public function getOffsetValueType(Type $offsetType): Type
{
return $this->getResult()->getOffsetValueType($offsetType);
}
public function setOffsetValueType(?Type $offsetType, Type $valueType, bool $unionValues = true): Type
{
return $this->getResult()->setOffsetValueType($offsetType, $valueType, $unionValues);
}
public function unsetOffset(Type $offsetType): Type
{
return $this->getResult()->unsetOffset($offsetType);
}
public function isCallable(): TrinaryLogic
{
return $this->getResult()->isCallable();
}
public function getCallableParametersAcceptors(ClassMemberAccessAnswerer $scope): array
{
return $this->getResult()->getCallableParametersAcceptors($scope);
}
public function isCloneable(): TrinaryLogic
{
return $this->getResult()->isCloneable();
}
public function toBoolean(): BooleanType
{
return $this->getResult()->toBoolean();
}
public function toNumber(): Type
{
return $this->getResult()->toNumber();
}
public function toInteger(): Type
{
return $this->getResult()->toInteger();
}
public function toFloat(): Type
{
return $this->getResult()->toFloat();
}
public function toString(): Type
{
return $this->getResult()->toString();
}
public function toArray(): Type
{
return $this->getResult()->toArray();
}
public function isSmallerThan(Type $otherType): TrinaryLogic
{
return $this->getResult()->isSmallerThan($otherType);
}
public function isSmallerThanOrEqual(Type $otherType): TrinaryLogic
{
return $this->getResult()->isSmallerThanOrEqual($otherType);
}
public function isString(): TrinaryLogic
{
return $this->getResult()->isString();
}
public function isNumericString(): TrinaryLogic
{
return $this->getResult()->isNumericString();
}
public function isNonEmptyString(): TrinaryLogic
{
return $this->getResult()->isNonEmptyString();
}
public function isLiteralString(): TrinaryLogic
{
return $this->getResult()->isLiteralString();
}
public function getSmallerType(): Type
{
return $this->getResult()->getSmallerType();
}
public function getSmallerOrEqualType(): Type
{
return $this->getResult()->getSmallerOrEqualType();
}
public function getGreaterType(): Type
{
return $this->getResult()->getGreaterType();
}
public function getGreaterOrEqualType(): Type
{
return $this->getResult()->getGreaterOrEqualType();
}
public function inferTemplateTypes(Type $receivedType): TemplateTypeMap
{
return $this->getResult()->inferTemplateTypes($receivedType);
}
public function tryRemove(Type $typeToRemove): ?Type
{
return $this->getResult()->tryRemove($typeToRemove);
}
public function isSubTypeOf(Type $otherType): TrinaryLogic
{
$result = $this->getResult();
if ($result instanceof CompoundType) {
return $result->isSubTypeOf($otherType);
}
return $otherType->isSuperTypeOf($result);
}
public function isAcceptedBy(Type $acceptingType, bool $strictTypes): TrinaryLogic
{
$result = $this->getResult();
if ($result instanceof CompoundType) {
return $result->isAcceptedBy($acceptingType, $strictTypes);
}
return $acceptingType->accepts($result, $strictTypes);
}
public function isGreaterThan(Type $otherType): TrinaryLogic
{
$result = $this->getResult();
if ($result instanceof CompoundType) {
return $result->isGreaterThan($otherType);
}
return $otherType->isSmallerThan($result);
}
public function isGreaterThanOrEqual(Type $otherType): TrinaryLogic
{
$result = $this->getResult();
if ($result instanceof CompoundType) {
return $result->isGreaterThanOrEqual($otherType);
}
return $otherType->isSmallerThanOrEqual($result);
}
public function getResult(): Type
{
if ($this->result === null) {
return $this->result = TypeCombinator::union($this->if, $this->else);
}
return $this->result;
}
}