subject = $this->attachExpression($subject); $this->target = $this->attachExpression($target); $this->operator = $operator; } public function getAsString() { return '(' . $this->subject->getAsString() . ') ' . $this->operator . ' (' . $this->target->getAsString() . ')'; } }