Example #1
0
 /**
  * PopLastExpression ::= "POPLAST" DocumentFieldName {"," PopLastExpression}
  */
 public function PopLastExpression(Query $query, array &$parameters)
 {
     $this->match(Lexer::T_IDENTIFIER);
     $query->popLast($this->_lexer->token['value']);
 }