Home
last modified time | relevance | path

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

/template/mikio/inc/stemmechanics/lesserphp/
Dlessc.inc.php3689 protected function literal($what, $eatWhitespace = null) { argument
3690 if ($eatWhitespace === null) $eatWhitespace = $this->eatWhiteDefault;
3695 if (!$eatWhitespace) {
3709 return $this->match(self::$literalCache[$what], $m, $eatWhitespace);
3753 protected function match($regex, &$out, $eatWhitespace = null) { argument
3754 if ($eatWhitespace === null) $eatWhitespace = $this->eatWhiteDefault;
3756 $r = '/'.$regex.($eatWhitespace && !$this->writeComments ? '\s*' : '').'/Ais';
3759 if ($eatWhitespace && $this->writeComments) $this->whitespace();