-
Notifications
You must be signed in to change notification settings - Fork 659
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6207 from orklah/int-range
- Loading branch information
Showing
5 changed files
with
234 additions
and
1 deletion.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
src/Psalm/Internal/Type/Comparator/IntegerRangeComparator.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
namespace Psalm\Internal\Type\Comparator; | ||
|
||
use Psalm\Type\Atomic\TIntRange; | ||
|
||
/** | ||
* @internal | ||
*/ | ||
class IntegerRangeComparator | ||
{ | ||
public static function isContainedBy( | ||
TIntRange $input_type_part, | ||
TIntRange $container_type_part | ||
) : bool { | ||
$is_input_min = $input_type_part->min_bound === TIntRange::BOUND_MIN; | ||
$is_input_max = $input_type_part->max_bound === TIntRange::BOUND_MAX; | ||
$is_container_min = $container_type_part->min_bound === TIntRange::BOUND_MIN; | ||
$is_container_max = $container_type_part->max_bound === TIntRange::BOUND_MAX; | ||
|
||
$is_input_min_in_container = ( | ||
$is_container_min || | ||
(!$is_input_min && $container_type_part->min_bound <= $input_type_part->min_bound) | ||
); | ||
$is_input_max_in_container = ( | ||
$is_container_max || | ||
(!$is_input_max && $container_type_part->max_bound >= $input_type_part->max_bound) | ||
); | ||
return $is_input_min_in_container && $is_input_max_in_container; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<?php | ||
namespace Psalm\Type\Atomic; | ||
|
||
/** | ||
* Denotes an interval of integers between two bounds | ||
*/ | ||
class TIntRange extends TInt | ||
{ | ||
const BOUND_MIN = 'min'; | ||
const BOUND_MAX = 'max'; | ||
|
||
/** | ||
* @var int|string | ||
* @psalm-var int|'min' | ||
*/ | ||
public $min_bound; | ||
/** | ||
* @var int|string | ||
* @var int|'max' | ||
*/ | ||
public $max_bound; | ||
|
||
/** | ||
* @param int|self::BOUND_MIN $min_bound | ||
* @param int|self::BOUND_MAX $max_bound | ||
*/ | ||
public function __construct($min_bound, $max_bound) | ||
{ | ||
$this->min_bound = $min_bound; | ||
$this->max_bound = $max_bound; | ||
} | ||
|
||
public function __toString(): string | ||
{ | ||
return $this->getKey(); | ||
} | ||
|
||
public function getKey(bool $include_extra = true): string | ||
{ | ||
return 'int<' . $this->min_bound . ', ' . $this->max_bound . '>'; | ||
} | ||
|
||
public function canBeFullyExpressedInPhp(int $php_major_version, int $php_minor_version): bool | ||
{ | ||
return false; | ||
} | ||
|
||
/** | ||
* @param array<lowercase-string, string> $aliased_classes | ||
*/ | ||
public function toPhpString( | ||
?string $namespace, | ||
array $aliased_classes, | ||
?string $this_class, | ||
int $php_major_version, | ||
int $php_minor_version | ||
): ?string { | ||
return $php_major_version >= 7 ? 'int' : null; | ||
} | ||
|
||
/** | ||
* @param array<lowercase-string, string> $aliased_classes | ||
*/ | ||
public function toNamespacedString( | ||
?string $namespace, | ||
array $aliased_classes, | ||
?string $this_class, | ||
bool $use_phpdoc_format | ||
): string { | ||
return $use_phpdoc_format ? 'int' : 'int<' . $this->min_bound . ', ' . $this->max_bound . '>'; | ||
} | ||
|
||
public function isPositive(): bool | ||
{ | ||
return $this->min_bound !== self::BOUND_MIN && $this->min_bound > 0; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<?php | ||
namespace Psalm\Tests; | ||
|
||
class IntRangeTest extends TestCase | ||
{ | ||
use Traits\InvalidCodeAnalysisTestTrait; | ||
use Traits\ValidCodeAnalysisTestTrait; | ||
|
||
/** | ||
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}> | ||
*/ | ||
public function providerValidCodeParse(): iterable | ||
{ | ||
return [ | ||
'intRangeContained' => [ | ||
'<?php | ||
/** | ||
* @param int<1,12> $a | ||
* @return int<-1, max> | ||
*/ | ||
function scope(int $a){ | ||
return $a; | ||
}', | ||
], | ||
'positiveIntRange' => [ | ||
'<?php | ||
/** | ||
* @param int<1,12> $a | ||
* @return positive-int | ||
*/ | ||
function scope(int $a){ | ||
return $a; | ||
}', | ||
], | ||
'intRangeToInt' => [ | ||
'<?php | ||
/** | ||
* @param int<1,12> $a | ||
* @return int | ||
*/ | ||
function scope(int $a){ | ||
return $a; | ||
}', | ||
], | ||
]; | ||
} | ||
|
||
/** | ||
* @return iterable<string,array{string,error_message:string,1?:string[],2?:bool,3?:string}> | ||
*/ | ||
public function providerInvalidCodeParse(): iterable | ||
{ | ||
return [ | ||
'intRangeNotContained' => [ | ||
'<?php | ||
/** | ||
* @param int<1,12> $a | ||
* @return int<-1, 11> | ||
* @psalm-suppress InvalidReturnStatement | ||
*/ | ||
function scope(int $a){ | ||
return $a; | ||
}', | ||
'error_message' => 'InvalidReturnType', | ||
], | ||
]; | ||
} | ||
} |