Lines Matching refs:newline
119 protected string $newline; variable in PhpParser\\PrettyPrinterAbstract
195 $this->newline = $options['newline'] ?? "\n";
196 if ($this->newline !== "\n" && $this->newline != "\r\n") {
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);
293 return "<?php" . $this->newline . $this->newline;
296 $p = "<?php" . $this->newline . $this->newline . $this->prettyPrint($stmts);
331 $this->docStringEndToken . ';' . $this->newline,
332 ';' . $this->newline,
334 $str = str_replace($this->docStringEndToken, $this->newline, $str);
578 $result = "<?php" . $this->newline . $this->pStmts($stmts, false);