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)
commit5233631af8cf8065bde74facc543642c4a24e1d6
treeb76a0ecda5cce2463f31e212f71ce28317145ef5
parent652ac774d6662ef2a5462dac3b68c31207c7a010
parentda4d964047d7240ac23bc77130f4e29226540e14
merged branch nikic/doNotUseNameNodeForFuncNames (PR #410)

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.