Skip through whitespace and comments @ignore
protected function skipWSC() {
$c = $this
->read();
while (self::isWhitespace($c) || $c == '#') {
if ($c == '#') {
$this
->skipLine();
}
$c = $this
->read();
}
$this
->unread($c);
return $c;
}