@@ -550,30 +550,23 @@ private function printArrayFormatPreserving(array $nodes, array $originalNodes,
550
550
551
551
foreach ($ diff as $ i => $ diffElem ) {
552
552
$ diffType = $ diffElem ->type ;
553
- $ arrItem = $ diffElem ->new ;
554
- $ origArrayItem = $ diffElem ->old ;
553
+ $ newNode = $ diffElem ->new ;
554
+ $ originalNode = $ diffElem ->old ;
555
555
if ($ diffType === DiffElem::TYPE_KEEP || $ diffType === DiffElem::TYPE_REPLACE ) {
556
556
$ beforeFirstKeepOrReplace = false ;
557
- if (!$ arrItem instanceof Node || !$ origArrayItem instanceof Node) {
557
+ if (!$ newNode instanceof Node || !$ originalNode instanceof Node) {
558
558
return null ;
559
559
}
560
560
561
561
/** @var int $itemStartPos */
562
- $ itemStartPos = $ origArrayItem ->getAttribute (Attribute::START_INDEX );
562
+ $ itemStartPos = $ originalNode ->getAttribute (Attribute::START_INDEX );
563
563
564
564
/** @var int $itemEndPos */
565
- $ itemEndPos = $ origArrayItem ->getAttribute (Attribute::END_INDEX );
566
-
565
+ $ itemEndPos = $ originalNode ->getAttribute (Attribute::END_INDEX );
567
566
if ($ itemStartPos < 0 || $ itemEndPos < 0 || $ itemStartPos < $ tokenIndex ) {
568
567
throw new LogicException ();
569
568
}
570
569
571
- $ comments = $ arrItem ->getAttribute (Attribute::COMMENTS ) ?? [];
572
- $ origComments = $ origArrayItem ->getAttribute (Attribute::COMMENTS ) ?? [];
573
-
574
- $ commentStartPos = count ($ origComments ) > 0 ? $ origComments [0 ]->startIndex : $ itemStartPos ;
575
- assert ($ commentStartPos >= 0 );
576
-
577
570
$ result .= $ originalTokens ->getContentBetween ($ tokenIndex , $ itemStartPos );
578
571
579
572
if (count ($ delayedAdd ) > 0 ) {
@@ -584,14 +577,6 @@ private function printArrayFormatPreserving(array $nodes, array $originalNodes,
584
577
$ result .= '( ' ;
585
578
}
586
579
587
- if ($ insertNewline ) {
588
- $ delayedAddComments = $ delayedAddNode ->getAttribute (Attribute::COMMENTS ) ?? [];
589
- if (count ($ delayedAddComments ) > 0 ) {
590
- $ result .= $ this ->printComments ($ delayedAddComments , $ beforeAsteriskIndent , $ afterAsteriskIndent );
591
- $ result .= sprintf ('%s%s*%s ' , $ originalTokens ->getDetectedNewline () ?? "\n" , $ beforeAsteriskIndent , $ afterAsteriskIndent );
592
- }
593
- }
594
-
595
580
$ result .= $ this ->printNodeFormatPreserving ($ delayedAddNode , $ originalTokens );
596
581
if ($ parenthesesNeeded ) {
597
582
$ result .= ') ' ;
@@ -608,21 +593,14 @@ private function printArrayFormatPreserving(array $nodes, array $originalNodes,
608
593
}
609
594
610
595
$ parenthesesNeeded = isset ($ this ->parenthesesListMap [$ mapKey ])
611
- && in_array (get_class ($ arrItem ), $ this ->parenthesesListMap [$ mapKey ], true )
612
- && !in_array (get_class ($ origArrayItem ), $ this ->parenthesesListMap [$ mapKey ], true );
596
+ && in_array (get_class ($ newNode ), $ this ->parenthesesListMap [$ mapKey ], true )
597
+ && !in_array (get_class ($ originalNode ), $ this ->parenthesesListMap [$ mapKey ], true );
613
598
$ addParentheses = $ parenthesesNeeded && !$ originalTokens ->hasParentheses ($ itemStartPos , $ itemEndPos );
614
599
if ($ addParentheses ) {
615
600
$ result .= '( ' ;
616
601
}
617
602
618
- if ($ comments !== $ origComments ) {
619
- if (count ($ comments ) > 0 ) {
620
- $ result .= $ this ->printComments ($ comments , $ beforeAsteriskIndent , $ afterAsteriskIndent );
621
- $ result .= sprintf ('%s%s*%s ' , $ originalTokens ->getDetectedNewline () ?? "\n" , $ beforeAsteriskIndent , $ afterAsteriskIndent );
622
- }
623
- }
624
-
625
- $ result .= $ this ->printNodeFormatPreserving ($ arrItem , $ originalTokens );
603
+ $ result .= $ this ->printNodeFormatPreserving ($ newNode , $ originalTokens );
626
604
if ($ addParentheses ) {
627
605
$ result .= ') ' ;
628
606
}
@@ -632,25 +610,25 @@ private function printArrayFormatPreserving(array $nodes, array $originalNodes,
632
610
if ($ insertStr === null ) {
633
611
return null ;
634
612
}
635
- if (!$ arrItem instanceof Node) {
613
+ if (!$ newNode instanceof Node) {
636
614
return null ;
637
615
}
638
616
639
- if ($ insertStr === ', ' && $ isMultiline || count ($ arrItem ->getAttribute (Attribute::COMMENTS ) ?? []) > 0 ) {
617
+ if ($ insertStr === ', ' && $ isMultiline || count ($ newNode ->getAttribute (Attribute::COMMENTS ) ?? []) > 0 ) {
640
618
$ insertStr = ', ' ;
641
619
$ insertNewline = true ;
642
620
}
643
621
644
622
if ($ beforeFirstKeepOrReplace ) {
645
623
// Will be inserted at the next "replace" or "keep" element
646
- $ delayedAdd [] = $ arrItem ;
624
+ $ delayedAdd [] = $ newNode ;
647
625
continue ;
648
626
}
649
627
650
628
/** @var int $itemEndPos */
651
629
$ itemEndPos = $ tokenIndex - 1 ;
652
630
if ($ insertNewline ) {
653
- $ comments = $ arrItem ->getAttribute (Attribute::COMMENTS ) ?? [];
631
+ $ comments = $ newNode ->getAttribute (Attribute::COMMENTS ) ?? [];
654
632
$ result .= $ insertStr ;
655
633
if (count ($ comments ) > 0 ) {
656
634
$ result .= sprintf ('%s%s*%s ' , $ originalTokens ->getDetectedNewline () ?? "\n" , $ beforeAsteriskIndent , $ afterAsteriskIndent );
@@ -662,28 +640,28 @@ private function printArrayFormatPreserving(array $nodes, array $originalNodes,
662
640
}
663
641
664
642
$ parenthesesNeeded = isset ($ this ->parenthesesListMap [$ mapKey ])
665
- && in_array (get_class ($ arrItem ), $ this ->parenthesesListMap [$ mapKey ], true );
643
+ && in_array (get_class ($ newNode ), $ this ->parenthesesListMap [$ mapKey ], true );
666
644
if ($ parenthesesNeeded ) {
667
645
$ result .= '( ' ;
668
646
}
669
647
670
- $ result .= $ this ->printNodeFormatPreserving ($ arrItem , $ originalTokens );
648
+ $ result .= $ this ->printNodeFormatPreserving ($ newNode , $ originalTokens );
671
649
if ($ parenthesesNeeded ) {
672
650
$ result .= ') ' ;
673
651
}
674
652
675
653
$ tokenIndex = $ itemEndPos + 1 ;
676
654
677
655
} elseif ($ diffType === DiffElem::TYPE_REMOVE ) {
678
- if (!$ origArrayItem instanceof Node) {
656
+ if (!$ originalNode instanceof Node) {
679
657
return null ;
680
658
}
681
659
682
660
/** @var int $itemStartPos */
683
- $ itemStartPos = $ origArrayItem ->getAttribute (Attribute::START_INDEX );
661
+ $ itemStartPos = $ originalNode ->getAttribute (Attribute::START_INDEX );
684
662
685
663
/** @var int $itemEndPos */
686
- $ itemEndPos = $ origArrayItem ->getAttribute (Attribute::END_INDEX );
664
+ $ itemEndPos = $ originalNode ->getAttribute (Attribute::END_INDEX );
687
665
if ($ itemStartPos < 0 || $ itemEndPos < 0 ) {
688
666
throw new LogicException ();
689
667
}
0 commit comments