in src/PageSections/_Private/stringify_expression.hack [15:22]
function stringify_expression(
ScannedExpression $e
): string {
if ($e->hasStaticValue()) {
return \var_export($e->getStaticValue(), true);
}
return ast_without_trivia($e->getAST())->getCode();
}