Slowly getting back into development on PXP – left it sitting for quite a while and I've found some end-of-year energy to work on it again.
Currently writing a DocBlock parser so that you get that oh so sweet type checking and autocompletion. Long-term goal is support for all of PHPStan's types...
Currently writing a DocBlock parser so that you get that oh so sweet type checking and autocompletion. Long-term goal is support for all of PHPStan's types...
Comments
https://github.com/carthage-software/fennec/tree/main/crates/docblock
basically, I want the type checking to be as powerful as possible without _needing_ docblocks
PXP is unique as it parses the DocBlocks at the same time as regular PHP code. Surprisingly, this is more performant as it doesn't need to traverse the entire AST to analyse and process DocBlocks!