Constructs a yield expression node.
null|Expr $value Value expression:
null|Expr $key Key expression:
array<string, mixed> $attributes Additional attributes:
public function __construct(?Expr $value = null, ?Expr $key = null, array $attributes = []) { $this->attributes = $attributes; $this->key = $key; $this->value = $value; }