@@ -5450,14 +5450,15 @@ private function processAssignVar(
5450
5450
$ offsetValueType = $ varType ;
5451
5451
$ offsetNativeValueType = $ varNativeType ;
5452
5452
5453
- $ valueToWrite = $ this ->produceArrayDimFetchAssignValueToWrite ($ offsetTypes , $ offsetValueType , $ valueToWrite );
5453
+ $ valueToWrite = $ this ->produceArrayDimFetchAssignValueToWrite ($ dimFetchStack , $ offsetTypes , $ offsetValueType , $ valueToWrite, $ scope );
5454
5454
5455
5455
if (!$ offsetValueType ->equals ($ offsetNativeValueType ) || !$ valueToWrite ->equals ($ nativeValueToWrite )) {
5456
- $ nativeValueToWrite = $ this ->produceArrayDimFetchAssignValueToWrite ($ offsetNativeTypes , $ offsetNativeValueType , $ nativeValueToWrite );
5456
+ $ nativeValueToWrite = $ this ->produceArrayDimFetchAssignValueToWrite ($ dimFetchStack , $ offsetNativeTypes , $ offsetNativeValueType , $ nativeValueToWrite, $ scope );
5457
5457
} else {
5458
5458
$ rewritten = false ;
5459
5459
foreach ($ offsetTypes as $ i => $ offsetType ) {
5460
5460
$ offsetNativeType = $ offsetNativeTypes [$ i ];
5461
+
5461
5462
if ($ offsetType === null ) {
5462
5463
if ($ offsetNativeType !== null ) {
5463
5464
throw new ShouldNotHappenException ();
@@ -5471,7 +5472,7 @@ private function processAssignVar(
5471
5472
continue ;
5472
5473
}
5473
5474
5474
- $ nativeValueToWrite = $ this ->produceArrayDimFetchAssignValueToWrite ($ offsetNativeTypes , $ offsetNativeValueType , $ nativeValueToWrite );
5475
+ $ nativeValueToWrite = $ this ->produceArrayDimFetchAssignValueToWrite ($ dimFetchStack , $ offsetNativeTypes , $ offsetNativeValueType , $ nativeValueToWrite, $ scope );
5475
5476
$ rewritten = true ;
5476
5477
break ;
5477
5478
}
@@ -5784,9 +5785,10 @@ static function (): void {
5784
5785
}
5785
5786
5786
5787
/**
5788
+ * @param list<ArrayDimFetch> $dimFetchStack
5787
5789
* @param list<Type|null> $offsetTypes
5788
5790
*/
5789
- private function produceArrayDimFetchAssignValueToWrite (array $ offsetTypes , Type $ offsetValueType , Type $ valueToWrite ): Type
5791
+ private function produceArrayDimFetchAssignValueToWrite (array $ dimFetchStack , array $ offsetTypes , Type $ offsetValueType , Type $ valueToWrite, Scope $ scope ): Type
5790
5792
{
5791
5793
$ offsetValueTypeStack = [$ offsetValueType ];
5792
5794
foreach (array_slice ($ offsetTypes , 0 , -1 ) as $ offsetType ) {
@@ -5821,6 +5823,31 @@ private function produceArrayDimFetchAssignValueToWrite(array $offsetTypes, Type
5821
5823
$ offsetValueType = TypeCombinator::intersect ($ offsetValueType , TypeCombinator::union (...$ types ));
5822
5824
}
5823
5825
$ valueToWrite = $ offsetValueType ->setOffsetValueType ($ offsetType , $ valueToWrite , $ i === 0 );
5826
+
5827
+ $ arrayDimFetch = $ dimFetchStack [$ i ] ?? null ;
5828
+ if ($ arrayDimFetch === null || !$ offsetValueType ->isList ()->yes ()) {
5829
+ continue ;
5830
+ }
5831
+
5832
+ if ($ scope ->hasExpressionType ($ arrayDimFetch )->yes ()) { // keep list for $list[$index] assignments
5833
+ $ valueToWrite = TypeCombinator::intersect ($ valueToWrite , new AccessoryArrayListType ());
5834
+ } elseif ($ arrayDimFetch ->dim instanceof BinaryOp \Plus) {
5835
+ if ( // keep list for $list[$index + 1] assignments
5836
+ $ arrayDimFetch ->dim ->right instanceof Variable
5837
+ && $ arrayDimFetch ->dim ->left instanceof Node \Scalar \Int_
5838
+ && $ arrayDimFetch ->dim ->left ->value === 1
5839
+ && $ scope ->hasExpressionType (new ArrayDimFetch ($ arrayDimFetch ->var , $ arrayDimFetch ->dim ->right ))->yes ()
5840
+ ) {
5841
+ $ valueToWrite = TypeCombinator::intersect ($ valueToWrite , new AccessoryArrayListType ());
5842
+ } elseif ( // keep list for $list[1 + $index] assignments
5843
+ $ arrayDimFetch ->dim ->left instanceof Variable
5844
+ && $ arrayDimFetch ->dim ->right instanceof Node \Scalar \Int_
5845
+ && $ arrayDimFetch ->dim ->right ->value === 1
5846
+ && $ scope ->hasExpressionType (new ArrayDimFetch ($ arrayDimFetch ->var , $ arrayDimFetch ->dim ->left ))->yes ()
5847
+ ) {
5848
+ $ valueToWrite = TypeCombinator::intersect ($ valueToWrite , new AccessoryArrayListType ());
5849
+ }
5850
+ }
5824
5851
}
5825
5852
5826
5853
return $ valueToWrite ;
0 commit comments