public function toStringForDebug()

in src/PatternParser/PatternNode.php [23:28]


  public function toStringForDebug(): string {
    return $this->children
      |> Vec\map($$, $child ==> $child->toStringForDebug())
      |> Str\join($$, ', ')
      |> '['.$$.']';
  }