final public function forceAttribute_DEPRECATED()

in src/core/Node.hack [471:479]


  final public function forceAttribute_DEPRECATED(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;
  }