You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For #175
Using tolerant-php-parser-to-php-ast,
the following types of statements have been tested,
and the transformed ASTs were identical to nikic/php-ast's AST nodes:
```php
<?php
foo(1234)['index'](true, false);
(new MyClass())();
$result = foo(1234)(5678);
$obj->call('prop')('value');
```
Also, callExpression8.php is valid PHP code.
There shouldn't have been any diagnostics whatsoever.
I'm not very familiar with this repo,
so I might have missed potential bugs.
0 commit comments