public function visitConstantValue(ConstantValueBinding $constantValue) { $this->writer->literal($constantValue->getValue()); }
public function fold(ConstantValueBinding $first, ConstantValueBinding $second) { return new ConstantValueBinding($first->getKey(), $first->getValue() . $second->getValue()); }