in src/core/Node.hack [406:414]
final public function setAttribute(string $attr, mixed $value): this {
if ($this->__isRendered) {
throw new UseAfterRenderException(
Str\format("Can't %s after render", __FUNCTION__),
);
}
$this->attributes[$attr] = $value;
return $this;
}