mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-02 17:28:27 +01:00
8bcaa4261e
This is not fully accurate because the rules for "new variables" are different than the rules for dereferenceable LHS.
11 lines
209 B
Plaintext
11 lines
209 B
Plaintext
Parentheses for complex new/instanceof expressions
|
|
-----
|
|
<?php
|
|
new ('a' . 'b');
|
|
$x instanceof ('a' . 'b');
|
|
$x instanceof ($y++);
|
|
-----
|
|
!!php7
|
|
new ('a' . 'b')();
|
|
$x instanceof ('a' . 'b');
|
|
$x instanceof ($y++); |