|
@@ 730-734 (lines=5) @@
|
| 727 |
|
|
| 728 |
|
$field = $this->lexer->token['value']; |
| 729 |
|
|
| 730 |
|
while ($this->lexer->isNextToken(Lexer::T_DOT)) { |
| 731 |
|
$this->match(Lexer::T_DOT); |
| 732 |
|
$this->match(Lexer::T_IDENTIFIER); |
| 733 |
|
$field .= '.' . $this->lexer->token['value']; |
| 734 |
|
} |
| 735 |
|
} |
| 736 |
|
|
| 737 |
|
// Creating AST node |
|
@@ 1303-1307 (lines=5) @@
|
| 1300 |
|
|
| 1301 |
|
$field = $this->lexer->token['value']; |
| 1302 |
|
|
| 1303 |
|
while ($this->lexer->isNextToken(Lexer::T_DOT)) { |
| 1304 |
|
$this->match(Lexer::T_DOT); |
| 1305 |
|
$this->match(Lexer::T_IDENTIFIER); |
| 1306 |
|
$field .= '.' . $this->lexer->token['value']; |
| 1307 |
|
} |
| 1308 |
|
|
| 1309 |
|
$partialFieldSet[] = $field; |
| 1310 |
|
} |