final public function setContext()

in src/core/Node.hack [516:524]


  final public function setContext(string $key, mixed $value): this {
    if ($this->__isRendered) {
      throw new UseAfterRenderException(
        Str\format("Can't %s after render", __FUNCTION__),
      );
    }
    $this->context[$key] = $value;
    return $this;
  }