Parse a statement [2] @ignore
protected function parseStatement() {
$c = $this
->peek();
if ($c == '@') {
$this
->parseDirective();
$this
->skipWSC();
$this
->verifyCharacter($this
->read(), ".");
}
else {
$this
->parseTriples();
$this
->skipWSC();
$this
->verifyCharacter($this
->read(), ".");
}
}