Andi Gutmans wrote:
> andi            Tue Sep 24 15:05:53 2002 EDT
>
>   Modified files:
>     /ZendEngine2        zend_compile.c zend_compile.h zend_execute.c
>                         zend_language_parser.y
>   Log:
>   - Megapatch to try and support inheritance from sub-classes. Things 
>     might be *very* buggy now so don't get too upset if that happens.
>   - I still need to improve some stuff but it's a good step
>     (hopefully).

    <?php
    class Classname {}
    class AnotherClass extends Classname {}
    class Namespace {}
    class Namespace::Classname {}
    class Namespace::AnotherClass extends Namespace::Classname {}
    class YetAnotherClass extends Namespace::Classname {}
    ?>

  gives no longer a parser error :)

-- 
  Sebastian Bergmann
  http://sebastian-bergmann.de/                 http://phpOpenTracker.de/

  Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to