Example #1
0
 /**
  * MapClause ::= "MAP" MapFunction
  */
 public function MapClause(Query $query, array &$parameters)
 {
     $this->match(Lexer::T_MAP);
     $this->match(Lexer::T_STRING);
     $query->map($this->_lexer->token['value']);
 }