|
@@ 518-521 (lines=4) @@
|
| 515 |
|
if ($this->ch == 'M' || $this->ch == 'm') { |
| 516 |
|
$result = ExpressionTokenId::DECIMAL_LITERAL; |
| 517 |
|
$this->nextChar(); |
| 518 |
|
} elseif ($this->ch == 'd' || $this->ch == 'D') { |
| 519 |
|
$result = ExpressionTokenId::DOUBLE_LITERAL; |
| 520 |
|
$this->nextChar(); |
| 521 |
|
} elseif ($this->ch == 'L' || $this->ch == 'l') { |
| 522 |
|
$result = ExpressionTokenId::INT64_LITERAL; |
| 523 |
|
$this->nextChar(); |
| 524 |
|
} elseif ($this->ch == 'f' || $this->ch == 'F') { |
|
@@ 524-527 (lines=4) @@
|
| 521 |
|
} elseif ($this->ch == 'L' || $this->ch == 'l') { |
| 522 |
|
$result = ExpressionTokenId::INT64_LITERAL; |
| 523 |
|
$this->nextChar(); |
| 524 |
|
} elseif ($this->ch == 'f' || $this->ch == 'F') { |
| 525 |
|
$result = ExpressionTokenId::SINGLE_LITERAL; |
| 526 |
|
$this->nextChar(); |
| 527 |
|
} |
| 528 |
|
} |
| 529 |
|
|
| 530 |
|
return $result; |