```php function b() { yield from a(); } ``` results in ```php function b() { yield froma(); } ``` removing the space and breaking the actual logic. i believe it would be enough to just define T_YIELD_FROM in the tokenizer. token id is 269 //edit: running on php7.1.11 thanks