protected function EasyRdf_Parser_Turtle::parseObjectList

Parse a objectList [8] @ignore

1 call to EasyRdf_Parser_Turtle::parseObjectList()
EasyRdf_Parser_Turtle::parsePredicateObjectList in drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Parser/Turtle.php
Parse a predicateObjectList [7] @ignore

File

drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Parser/Turtle.php, line 250

Class

EasyRdf_Parser_Turtle
Class to parse Turtle with no external dependancies.

Code

protected function parseObjectList() {
  $this
    ->parseObject();
  while ($this
    ->skipWSC() == ',') {
    $this
      ->read();
    $this
      ->skipWSC();
    $this
      ->parseObject();
  }
}