Lines Matching refs:nl
121 protected string $nl; variable in PhpParser\\PrettyPrinterAbstract
222 $this->nl = $this->newline;
236 $this->nl = $this->newline . \str_repeat("\t", $tabs) . \str_repeat(' ', $spaces);
238 $this->nl = $this->newline . \str_repeat(' ', $level);
247 $this->nl .= $this->indent;
357 $result .= $this->nl . $this->pComments($comments);
363 $result .= $this->nl . $this->p($node);
508 $result .= $this->nl . $this->pComments($comments);
511 $result .= $this->nl . $this->p($node);
513 $result .= $this->nl;
535 $formattedComments[] = str_replace("\n", $this->nl, $comment->getReformattedText());
538 return implode($this->nl, $formattedComments);
874 $result .= $this->pComments($delayedAddComments) . $this->nl;
881 $result .= $insertStr . $this->nl;
892 $result .= $this->pComments($comments) . $this->nl;
936 $result .= $insertStr . $this->nl;
939 $result .= $this->pComments($comments) . $this->nl;
1014 $result .= $this->nl;
1020 $result .= $extraRight === "\n" ? $this->nl : $extraRight;