├── .gitignore ├── README.md ├── astracer.c ├── asts.php ├── config.m4 ├── php_astracer.h └── tests └── astracer_001.phpt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/php-ast-tracer-poc/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/php-ast-tracer-poc/HEAD/README.md -------------------------------------------------------------------------------- /astracer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/php-ast-tracer-poc/HEAD/astracer.c -------------------------------------------------------------------------------- /asts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/php-ast-tracer-poc/HEAD/asts.php -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/php-ast-tracer-poc/HEAD/config.m4 -------------------------------------------------------------------------------- /php_astracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/php-ast-tracer-poc/HEAD/php_astracer.h -------------------------------------------------------------------------------- /tests/astracer_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beberlei/php-ast-tracer-poc/HEAD/tests/astracer_001.phpt --------------------------------------------------------------------------------