On 02/22/2012 08:40 PM, H. S. Teoh wrote:
This would introduce quite a lot of overhead per scope. It will also lead to strange things like:if (x) y(); // faster if (x) { y(); } // slower
Those are the same thing. '{ }' is not what introduces a scope.
