Parse a predicateObjectList [7] @ignore
protected function parsePredicateObjectList() {
$this->predicate = $this
->parsePredicate();
$this
->skipWSC();
$this
->parseObjectList();
while ($this
->skipWSC() == ';') {
$this
->read();
$c = $this
->skipWSC();
if ($c == '.' || $c == ']') {
break;
}
$this->predicate = $this
->parsePredicate();
$this
->skipWSC();
$this
->parseObjectList();
}
}