nette / php-generator

🐘 Generates neat PHP code for you. Supports new PHP 8.3 features.
https://doc.nette.org/php-generator
Other
2.11k stars 138 forks source link

Method::from($from) loads method body as well #4

Closed uestla closed 10 years ago

dg commented 10 years ago

Can you add a test please?

(Test it with some class from minified Nette and PDO)

mishak87 commented 10 years ago

:heart: Awesome! But I guess it won't pass for B::b of this source.

<?php class A{function a(){return 'Aa';}}class B{function a(){return'Ba';} function b() {return'Bb';}function c(){return'Bc';}}class C{function a() {return'Ca';}}

Basically you would need to parse php code with context buffer to make it bullet proof and use begin and end for optimization.

uestla commented 10 years ago

@mishak87 Right ... Not to mention multiple namespaces and all that on one line... Closing.

mishak87 commented 10 years ago

I didn't mean to discourage you from doing it. Such feature would be really useful ie. it could simplify significantly generation of certain proxies. Probably it would be better to lazy load it for performance reasons but it is possible to do it.