Home
last modified time | relevance | path

Searched refs:line (Results 76 – 78 of 78) sorted by path

1234

/dokuwiki/vendor/splitbrain/php-cli/src/
H A DTableFormatter.php296 foreach ($lines as &$line) {
297 $line = rtrim($line);
298 if ($this->strlen($line) <= $width) {
301 $words = explode(' ', $line);
302 $line = '';
309 $line .= rtrim($actual) . $break;
314 $line .= $this->substr($actual, 0, $width) . $break;
321 $line .= trim($actual);
/dokuwiki/vendor/splitbrain/php-jsstrip/
H A DREADME.md13 jsstrip is not a true javascript parser. It assumes you have properly delimited the 'end of line' using a ';' (semicolon).
/dokuwiki/vendor/splitbrain/php-jsstrip/src/
H A DJSStrip.php35 protected $line = 0; variable in splitbrain\\JSStrip\\JSStrip
52 $this->line = 1;
95 // verbatim copy contents, trimming but putting it on its own line
204 if ($ch == "\n") $this->line++;
251 $msg = "$msg on line {$this->line}: '{$before}◎{$after}'";

1234