Skip to content

Commit c7a1da4

Browse files
committed
Fix format-preserving printer for GenericTagValueNode without description
1 parent fb19066 commit c7a1da4

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

src/Printer/Printer.php

+12
Original file line numberDiff line numberDiff line change
@@ -534,6 +534,10 @@ private function printArrayFormatPreserving(array $nodes, array $originalNodes,
534534
throw new LogicException();
535535
}
536536

537+
if ($itemEndPos < $itemStartPos) {
538+
return null;
539+
}
540+
537541
$result .= $originalTokens->getContentBetween($tokenIndex, $itemStartPos);
538542

539543
if (count($delayedAdd) > 0) {
@@ -742,6 +746,10 @@ private function printNodeFormatPreserving(Node $node, TokenIterator $originalTo
742746
throw new LogicException();
743747
}
744748

749+
if ($endPos < $startPos) {
750+
return $this->print($node);
751+
}
752+
745753
$result = '';
746754
$pos = $startPos;
747755
$subNodeNames = array_keys(get_object_vars($node));
@@ -795,6 +803,10 @@ private function printNodeFormatPreserving(Node $node, TokenIterator $originalTo
795803
throw new LogicException();
796804
}
797805

806+
if ($subEndPos < $subStartPos) {
807+
return $this->print($node);
808+
}
809+
798810
if ($subNode === null) {
799811
return $this->print($node);
800812
}

tests/PHPStan/Parser/PhpDocParserTest.php

+16
Original file line numberDiff line numberDiff line change
@@ -6765,6 +6765,13 @@ public function dataLinesAndIndexes(): iterable
67656765
[1, 1, 1, 3],
67666766
],
67676767
];
6768+
6769+
yield [
6770+
'/** @api */',
6771+
[
6772+
[1, 1, 1, 1],
6773+
],
6774+
];
67686775
}
67696776

67706777
/**
@@ -6839,6 +6846,15 @@ public function dataDeepNodesLinesAndIndexes(): iterable
68396846
[2, 4, 4, 6], // DoctrineArray
68406847
],
68416848
];
6849+
6850+
yield [
6851+
'/** @api */',
6852+
[
6853+
[1, 1, 0, 3],
6854+
[1, 1, 1, 1],
6855+
[1, 1, 3, 1], // GenericTagValueNode is empty so start index is higher than end index
6856+
],
6857+
];
68426858
}
68436859

68446860

tests/PHPStan/Printer/PrinterTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ public function dataPrintFormatPreserving(): iterable
8484

8585
};
8686
yield ['/** */', '/** */', $noopVisitor];
87+
yield ['/** @api */', '/** @api */', $noopVisitor];
8788
yield ['/**
8889
*/', '/**
8990
*/', $noopVisitor];

0 commit comments

Comments
 (0)