in src/core/UseAfterRenderException.hack [25:32]
public function getMessage()[]: string {
if (C\is_empty($this->xhpPath)) {
return $this->message;
}
return Vec\reverse($this->xhpPath)
|> Vec\map($$, $class ==> Str\strip_prefix($class, 'Facebook\\XHP\\'))
|> $this->message."\nVia XHPPath: ".Str\join($$, ' -> ').'.';
}