in src/XHPAttributeDecorator.hack [17:26]
function xhp_attribute_decorator_to_string(
XHPAttributeDecorator $decorator,
): string {
switch ($decorator) {
case XHPAttributeDecorator::REQUIRED:
return '@required';
case XHPAttributeDecorator::LATE_INIT:
return '@lateinit';
}
}