Example #1
0
 /**
  * SkipClause ::= "SKIP" SkipInteger
  */
 public function SkipClause(Query $query)
 {
     $this->match($this->_lexer->lookahead['type']);
     $query->skip($this->_lexer->token['value']);
 }