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