We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jira issue originally created by user @Ocramius:
Given following pieces of code:
function baz($tab) { $taz; } function foo () { return baz('tab'); } echo foo();
we want to have a simple (safe - must bail out eagerly) code-inliner that produces following:
$foo*generated*tab = 'tab'; echo $foo*generated*tab;
This sort of code generator/inliner would be useful to simplify generated hydrators
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
Comment created by yourwebmaker:
Hi Marco,
Could you give more in/out examples?
Ocramius
No branches or pull requests
Jira issue originally created by user @Ocramius:
Given following pieces of code:
we want to have a simple (safe - must bail out eagerly) code-inliner that produces following:
This sort of code generator/inliner would be useful to simplify generated hydrators
The text was updated successfully, but these errors were encountered: