merged branch nikic/doNotUseNameNodeForFuncNames (PR #410)
authorFabien Potencier <fabien.potencier@gmail.com>
Sun, 7 Aug 2011 07:37:28 +0000 (09:37 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Sun, 7 Aug 2011 07:37:28 +0000 (09:37 +0200)
Commits
-------

da4d964 Do not use Node_Expression_Name for function names, just use strings for those

Discussion
----------

Do not use Node_Expression_Name for function names

This patch remove the use of Node_Expression_Name for function names and instead uses normal strings for those. This is mainly to prevent problems with static analysis (e.g. using a loop() function would have triggered with_loop), but it also slightly reduces complexity.


Trivial merge