in src/Reflection/ReflectionXHPChildrenDeclaration.hack [67:75]
public function __toString(): string {
if ($this->getType() === XHPChildrenDeclarationType::ANY_CHILDREN) {
return 'any';
}
if ($this->getType() === XHPChildrenDeclarationType::NO_CHILDREN) {
return 'empty';
}
return $this->getExpression()->__toString();
}