src/SQLParser/Node/Between.php 1 location
|
@@ 219-223 (lines=5) @@
|
216 |
|
} |
217 |
|
if ($result !== NodeTraverser::DONT_TRAVERSE_CHILDREN) { |
218 |
|
$result2 = $this->leftOperand->walk($visitor); |
219 |
|
if ($result2 === NodeTraverser::REMOVE_NODE) { |
220 |
|
return NodeTraverser::REMOVE_NODE; |
221 |
|
} elseif ($result2 instanceof NodeInterface) { |
222 |
|
$this->leftOperand = $result2; |
223 |
|
} |
224 |
|
|
225 |
|
$result2 = $this->minValueOperand->walk($visitor); |
226 |
|
if ($result2 === NodeTraverser::REMOVE_NODE) { |
src/SQLParser/Node/AbstractTwoOperandsOperator.php 1 location
|
@@ 147-151 (lines=5) @@
|
144 |
|
} |
145 |
|
if ($result !== NodeTraverser::DONT_TRAVERSE_CHILDREN) { |
146 |
|
$result2 = $this->leftOperand->walk($visitor); |
147 |
|
if ($result2 === NodeTraverser::REMOVE_NODE) { |
148 |
|
return NodeTraverser::REMOVE_NODE; |
149 |
|
} elseif ($result2 instanceof NodeInterface) { |
150 |
|
$this->leftOperand = $result2; |
151 |
|
} |
152 |
|
|
153 |
|
$result2 = $this->rightOperand->walk($visitor); |
154 |
|
if ($result2 === NodeTraverser::REMOVE_NODE) { |