mirror of
https://github.com/danog/psalm.git
synced 2025-01-10 06:58:41 +01:00
76 lines
2.2 KiB
PHP
76 lines
2.2 KiB
PHP
<?php
|
|
namespace Psalm\Internal\PhpVisitor;
|
|
|
|
use PhpParser;
|
|
|
|
/**
|
|
* Shifts all nodes in a given AST by a set amount
|
|
*/
|
|
class OffsetShifterVisitor extends PhpParser\NodeVisitorAbstract
|
|
{
|
|
/** @var int */
|
|
private $file_offset;
|
|
|
|
/** @var int */
|
|
private $line_offset;
|
|
|
|
/** @var array<int, int> */
|
|
private $extra_offsets;
|
|
|
|
/**
|
|
* @param array<int, int> $extra_offsets
|
|
*/
|
|
public function __construct(int $offset, int $line_offset, array $extra_offsets)
|
|
{
|
|
$this->file_offset = $offset;
|
|
$this->line_offset = $line_offset;
|
|
$this->extra_offsets = $extra_offsets;
|
|
}
|
|
|
|
/**
|
|
* @return null|int
|
|
*/
|
|
public function enterNode(PhpParser\Node $node)
|
|
{
|
|
/** @var array{startFilePos: int, endFilePos: int, startLine: int} */
|
|
$attrs = $node->getAttributes();
|
|
|
|
if ($cs = $node->getComments()) {
|
|
$new_comments = [];
|
|
|
|
foreach ($cs as $c) {
|
|
if ($c instanceof PhpParser\Comment\Doc) {
|
|
$new_comments[] = new PhpParser\Comment\Doc(
|
|
$c->getText(),
|
|
$c->getStartLine() + $this->line_offset,
|
|
$c->getStartFilePos() + $this->file_offset + ($this->extra_offsets[$c->getStartFilePos()] ?? 0)
|
|
);
|
|
} else {
|
|
$new_comments[] = new PhpParser\Comment(
|
|
$c->getText(),
|
|
$c->getStartLine() + $this->line_offset,
|
|
$c->getStartFilePos() + $this->file_offset + ($this->extra_offsets[$c->getStartFilePos()] ?? 0)
|
|
);
|
|
}
|
|
}
|
|
|
|
$node->setAttribute('comments', $new_comments);
|
|
}
|
|
|
|
/**
|
|
* @psalm-suppress MixedOperand
|
|
*/
|
|
$node->setAttribute(
|
|
'startFilePos',
|
|
$attrs['startFilePos'] + $this->file_offset + ($this->extra_offsets[$attrs['startFilePos']] ?? 0)
|
|
);
|
|
$node->setAttribute(
|
|
'endFilePos',
|
|
$attrs['endFilePos'] + $this->file_offset + ($this->extra_offsets[$attrs['endFilePos']] ?? 0)
|
|
);
|
|
$node->setAttribute('startLine', $attrs['startLine'] + $this->line_offset);
|
|
|
|
return null;
|
|
}
|
|
}
|