in src/html/tags/c/ConditionalComment.hack [30:39]
protected async function stringifyAsync(): Awaitable<string> {
$html = '<!--[if '.$this->:if.']>';
$html .= await Vec\map_async(
$this->getChildren(),
async $child ==> await self::renderChildAsync($child),
)
|> Str\join($$, '');
$html .= '<![endif]-->';
return $html;
}