Home
last modified time | relevance | path

Searched refs:eatWhitespace (Results 1 – 1 of 1) sorted by relevance

/dokuwiki/vendor/splitbrain/lesserphp/src/
DParser.php1272 protected function literal($what, $eatWhitespace = null) argument
1274 if ($eatWhitespace === null) $eatWhitespace = $this->eatWhiteDefault;
1279 if (!$eatWhitespace) {
1293 return $this->match(self::$literalCache[$what], $m, $eatWhitespace);
1340 protected function match($regex, &$out, $eatWhitespace = null) argument
1342 if ($eatWhitespace === null) $eatWhitespace = $this->eatWhiteDefault;
1344 $r = '/' . $regex . ($eatWhitespace && !$this->writeComments ? '\s*' : '') . '/Ais';
1347 if ($eatWhitespace && $this->writeComments) $this->whitespace();