Searched refs:eatWhitespace (Results 1 – 1 of 1) sorted by relevance
3689 protected function literal($what, $eatWhitespace = null) { argument3690 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) { argument3754 if ($eatWhitespace === null) $eatWhitespace = $this->eatWhiteDefault;3756 $r = '/'.$regex.($eatWhitespace && !$this->writeComments ? '\s*' : '').'/Ais';3759 if ($eatWhitespace && $this->writeComments) $this->whitespace();