Dmitry Patsura

Results 135 comments of Dmitry Patsura

@ddmler Lets w8th Control Flow Graph, our event listen system will work from CFG in the feature

Thank @ddmler, cool idea: Done: - [X] Remove support for PHP version 5.6 (it seems we always support the last 3 php versions and so does php-parser) - [X] Update...

Hey, I will write a small documentation with referenced examples

Seems We are having 2 ways how to improve this 1. So I suggest to build a new Interface called like `ScopePointerInterface` Implement `ClassMethod, FunctionDefinition` with `ScopePointerInterface` Add `ScopePointerInterface` strict...

@ddmler Hey! Unset can be - Operator ``` php unset $a; ``` - Function http://php.net/manual/ru/function.unset.php ``` php unset($a): ``` I created another issue for unset fcall https://github.com/ovr/phpsa/issues/70

So, I am wrong unset is an operator (because it's handled by VM OPCODE) but with function call like syntax And @nikic's php-parser named it like PhpParser\Node\Stmt\Unset_ From PHP-src I...

Hey! Can you submit related code for tests? Thanks

@Kilgaloon There is a precompile step inside PHPSA, all functions inside director are visible to any scope, I think it's an NS issue related latest changes like https://github.com/ovr/phpsa/commit/63d2b1f5013cd779d70507ee0acbc53d8b46470f Or it's...