/**
  * @return $this
  */
 public function endExpression()
 {
     if (!$this->currentExpression->isEmpty()) {
         $this->items[] = $this->currentExpression;
         $this->currentExpression = new StackExpression();
     }
     return $this;
 }