expr = $expr; } /** * Returns a string representation of this node. * * @param Context $context symbol table */ public function render(Context $context): ?string { $value = $this->expr->value($context); if (!($this->expr instanceof RawExpression)) { $value = $context->escape($value); } return $value; } }