We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56da388 commit 0338aa9Copy full SHA for 0338aa9
src/Lexer.php
@@ -364,7 +364,6 @@ private function solveAmbiguityOnStarOperator()
364
{
365
$iBak = $this->list->idx;
366
while (null !== ($starToken = $this->list->getNextOfTypeAndValue(Token::TYPE_OPERATOR, '*'))) {
367
- //$starTokenIndex = $this->list->idx;
368
// ::getNext already gets rid of whitespaces and comments.
369
$next = $this->list->getNext();
370
if ($next !== null) {
@@ -376,9 +375,7 @@ private function solveAmbiguityOnStarOperator()
376
375
$starToken->flags = Token::FLAG_OPERATOR_SQL;
377
}
378
379
- //$this->list->idx = $starTokenIndex;
380
381
- // Reset the current index in the list.
382
$this->list->idx = $iBak;
383
384
0 commit comments