1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-12 09:19:40 +01:00

foreach on list gives a positive|0 offset

This commit is contained in:
orklah 2021-10-07 19:32:25 +02:00
parent d8f42d7281
commit a7c4f0052b

View File

@ -449,7 +449,7 @@ class ForeachAnalyzer
? new Type\Union([ ? new Type\Union([
new Type\Atomic\TDependentListKey($list_var_id) new Type\Atomic\TDependentListKey($list_var_id)
]) ])
: Type::getInt(), : new Type\Union([new Type\Atomic\TIntRange(0, null)]),
$iterator_atomic_type->type_param $iterator_atomic_type->type_param
]); ]);
} elseif (!$iterator_atomic_type instanceof Type\Atomic\TNonEmptyArray) { } elseif (!$iterator_atomic_type instanceof Type\Atomic\TNonEmptyArray) {