protected functionpostprocessList(Expr\List_ $node) : void {
foreach ($node->items as $i => $item) {
if ($item->value instanceof Expr\Error) {
// We used Error as a placeholder for empty elements, which are legal for destructuring.$node->items[$i] = null;
}
}
}