Lines Matching refs:nl

131         return str_replace("\n", $this->nl, $str);
141 $nl = $shouldIdent ? $this->nl : $this->newline;
143 return "<<<'$label'$nl$label{$this->docStringEndToken}";
149 return "<<<'$label'$nl$value$nl$label{$this->docStringEndToken}";
160 $nl = $this->phpVersion->supportsFlexibleHeredoc() ? $this->nl : $this->newline;
162 return "<<<$label$nl$label{$this->docStringEndToken}";
165 return "<<<$label$nl$escaped$nl$label{$this->docStringEndToken}";
179 $nl = $this->phpVersion->supportsFlexibleHeredoc() ? $this->nl : $this->newline;
184 return "<<<$label$nl$label{$this->docStringEndToken}";
187 return "<<<$label$nl" . $this->pEncapsList($node->parts, null)
188 . "$nl$label{$this->docStringEndToken}";
657 . ' {' . $this->pStmts($node->stmts) . $this->nl . '}';
663 . $this->nl
747 . $this->nl . $this->pStmts($node->stmts, false);
750 . ' {' . $this->pStmts($node->stmts) . $this->nl . '}';
778 . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}';
786 . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}';
796 . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}';
810 : ' {' . $this->pStmts($node->adaptations) . $this->nl . '}');
845 ? $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}'
862 . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}';
871 . (null !== $node->stmts ? ' {' . $this->pStmts($node->stmts) . $this->nl . '}' : ';');
882 . $this->pStmts($node->stmts) . $this->nl . '}'
889 . $this->pStmts($node->stmts) . $this->nl . '}';
897 return 'else {' . $this->pStmts($node->stmts) . $this->nl . '}';
905 . ') {' . $this->pStmts($node->stmts) . $this->nl . '}';
912 . $this->pStmts($node->stmts) . $this->nl . '}';
917 . $this->pStmts($node->stmts) . $this->nl . '}';
921 return 'do {' . $this->pStmts($node->stmts) . $this->nl
927 . $this->pStmts($node->cases) . $this->nl . '}';
936 return 'try {' . $this->pStmts($node->stmts) . $this->nl . '}'
944 . ') {' . $this->pStmts($node->stmts) . $this->nl . '}';
948 return 'finally {' . $this->pStmts($node->stmts) . $this->nl . '}';
1012 return '{' . $this->pStmts($node->stmts) . $this->nl . '}';
1023 . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}';
1163 return $this->pCommaSeparatedMultiline($nodes, $trailingComma) . $this->nl;
1170 $sep = $inline ? ' ' : $this->nl;