summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.c
Commit message (Expand)AuthorAgeFilesLines
* nuke "main" as a reserved keywordSterling Hughes2003-06-301-2/+1
* - ZE coding style requires if ( instead of if(Andi Gutmans2003-06-301-2/+2
* Add final classesMarcus Boerger2003-06-211-0/+3
* Fix bug #23384 - static class::constant constants should nowStanislav Malyshev2003-06-151-0/+1
* updating license information in the headers.James Cox2003-06-101-1/+1
* Fix bogus implicit declarations of properties (squash bug #23671)Zeev Suraski2003-06-091-9/+35
* Nicer handling of protected/private members in print_r()Zeev Suraski2003-06-081-0/+13
* MEGA-patch: namespaces are R.I.P.Stanislav Malyshev2003-06-021-179/+3
* revert the function call caching patch until a new solution is decidedSterling Hughes2003-05-311-2/+0
* Fix ~ operator in class constants.Marcus Boerger2003-05-291-1/+4
* Faster interface inheritance & faster inheritance checksMarcus Boerger2003-05-291-8/+31
* Fix Bug #23285 (Potential Stack Overflow in zendlex).Wez Furlong2003-05-291-2/+3
* Cache function call lookups with loops (store in a temporary variable on theSterling Hughes2003-05-281-0/+3
* fix __cloneStanislav Malyshev2003-05-191-8/+19
* Inheritance fixMarcus Boerger2003-05-081-11/+14
* Reverting Marcus' incomplete patch which broke the build.Edin Kadribasic2003-05-071-23/+17
* Inheritance fixesMarcus Boerger2003-05-071-17/+23
* Don't inherit twice what is needed only onceMarcus Boerger2003-05-041-7/+9
* Add check for final propertiesSterling Hughes2003-04-201-3/+5
* Fix warnings.Sebastian Bergmann2003-04-111-1/+0
* satisfy andi's switch fetish ;-)Sterling Hughes2003-04-101-29/+23
* Fix ZTS build. Fix warning.Sebastian Bergmann2003-04-101-2/+3
* allow expressions within constants, so the following is possibleSterling Hughes2003-04-101-0/+54
* Initialize all relevant zend_class_entry fields to avoid accidentalAndrei Zmievski2003-04-031-3/+5
* Implement a different way to catch documentation comments.Andrei Zmievski2003-04-021-29/+24
* Revert portions of the doc comment patch. There should be no parserAndrei Zmievski2003-04-021-3/+10
* Split ZEND_NAMESPACE into user and internal namespaces. Hope this isAndrei Zmievski2003-04-011-8/+13
* Multi-purpose patch:Andrei Zmievski2003-03-311-6/+63
* Add missing initializationZeev Suraski2003-03-291-0/+1
* Fix crashZeev Suraski2003-03-291-1/+1
* Initial support for enforcing prototype of abstract/interface method implemen...Zeev Suraski2003-03-291-0/+57
* Fixed bug #22900 (declaration of namespaces with same name results in leaks).Ilia Alshanetsky2003-03-261-1/+2
* - Temporarily fix problem with inheriting from an internal class. This mightAndi Gutmans2003-03-251-0/+1
* Another fix for implicit public, perhaps it was not such a good idea :IZeev Suraski2003-03-231-0/+7
* - Keep track of starting/ending line numbers for user functions.Andrei Zmievski2003-03-191-0/+4
* - Fix situation where a derived class declares a public (or implicit public)Zeev Suraski2003-03-181-0/+3
* Fix a crash bug in the implicit public declarationZeev Suraski2003-03-121-0/+1
* Clean redundant codeZeev Suraski2003-03-101-68/+0
* Fixed some leaks. Patch by Moriyoshifoobar2003-03-101-0/+1
* Fix handling of ::fooZeev Suraski2003-03-091-2/+2
* CleanupZeev Suraski2003-03-091-22/+17
* Fix parsing rules of namespaces/classesZeev Suraski2003-03-091-24/+11
* Fix :: handlingZeev Suraski2003-03-091-0/+1
* Fix warningsZeev Suraski2003-03-061-1/+1
* Require abstract classes to be explicitly declared 'abstract', in order toZeev Suraski2003-03-061-4/+17
* Change opcode nameZeev Suraski2003-03-061-1/+1
* Add class type hintsZeev Suraski2003-03-061-1/+14
* Fix auto globalsZeev Suraski2003-03-051-1/+1
* Implement $obj::static_func()Zeev Suraski2003-03-051-21/+25
* Add support for interfacesZeev Suraski2003-03-051-20/+83