in src/PatternParser/ParameterNode.php [25:32]
public function toStringForDebug(): string {
$re = $this->getRegexp();
if ($re === null) {
return '{'.$this->getName().'}';
}
return \sprintf('{%s: #%s#}', $this->getName(), $this->getRegexp());
}