summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.c
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'php_5_1_0RC3'.php-5.1.0RC3SVN Migration2005-10-171-4/+2
|
* Fixed bug #34873 (Segmentation Fault on foreach in object)Dmitry Stogov2005-10-171-2/+4
|
* MFHDmitry Stogov2005-10-101-2/+2
|
* Fixed bug #34467 (foreach + __get + __set incosistency)Dmitry Stogov2005-10-101-30/+43
|
* Fixed bug #34358 (Fatal error: Cannot re-assign $this)Dmitry Stogov2005-10-031-2/+4
|
* fix #34505 (possible memory corruption when unmangling properties with empty ↵Antony Dovgal2005-09-161-1/+13
| | | | | | | names) 1st part
* MFH (overriding of protected static property)Dmitry Stogov2005-09-161-1/+1
|
* Changed "instanceof" and "catch" operators, is_a() and is_subclass_of() ↵Dmitry Stogov2005-09-091-1/+17
| | | | functions to not call __autoload().
* Fixed bug #34310 (foreach($arr as $c->d => $x) crashes)Dmitry Stogov2005-09-011-2/+8
|
* Support for class constants and static members for internal classesDmitry Stogov2005-09-011-14/+23
|
* Fixed bug #25359 (array_multisort() doesn't work in a function if array is ↵Dmitry Stogov2005-08-101-1/+6
| | | | global or reference)
* Fixed possible memory corryption during compilation of <?php foreach($a as ↵Dmitry Stogov2005-08-041-1/+2
| | | | $b); ?>
* Bump up the yearfoobar2005-08-031-1/+1
|
* Fixed bug #33710 (ArrayAccess objects doen't initialize $this)Dmitry Stogov2005-07-191-38/+39
|
* Added missing init.Ilia Alshanetsky2005-07-171-0/+1
|
* Fixed bug #33512 (Add missing support for isset()/unset() overloading to ↵Dmitry Stogov2005-07-071-0/+12
| | | | complement the property get/set methods)
* Partial fix for bug #26584 (Class member - array key overflow)Dmitry Stogov2005-06-241-0/+7
| | | | | It doesn't fix integer overflow problem, but allows null, boolean and double keys in array constants in the same way as in runtime.
* Fixed bug #30519 (Interface not existing says Class not found)Dmitry Stogov2005-06-241-1/+30
|
* Fixed bug #33257 (array_splice() inconsistent when passed function instead ↵Dmitry Stogov2005-06-221-2/+4
| | | | of variable)
* Remove unnecessary ZEND_FETCH_CLASS together with ↵Dmitry Stogov2005-06-211-0/+13
| | | | ZEND_DECLARE_INHERITED_CLASS in case of early binding
* Allowed return by refrence from internal functionsDmitry Stogov2005-06-161-6/+2
|
* ZEND_UNSET_DIM_OBJ is splitted to ZEND_UNSET_DIM and ZEND_UNSET_OBJ.Dmitry Stogov2005-06-161-4/+2
|
* Merge three opcodes (ZEND_NEW, ZEND_JMP_NO_CTOR, ZEND_INIT_CTOR) into one ↵Dmitry Stogov2005-06-101-27/+11
| | | | (ZEND_NEW). There was no real reason for this anymore and API should be changed before 5.1
* MF50: fix #29689 and more private property problemsStanislav Malyshev2005-06-091-1/+15
|
* disallow abstrace private methodsStanislav Malyshev2005-06-091-0/+3
|
* Fixed valgrind errorsDmitry Stogov2005-06-081-1/+2
|
* Fixed lookups for previos opcodesDmitry Stogov2005-06-081-88/+109
|
* Fixed bug #30961 (Wrong linenumber in ReflectionClass getStartLine())Dmitry Stogov2005-06-081-2/+2
|
* Fixed bug #26456 (Wrong results from Reflection-API getDocComment() when ↵Dmitry Stogov2005-06-071-6/+9
| | | | called via STDIN)
* Fixed bug #32428 (The @ warning error supression operator is broken)Dmitry Stogov2005-06-061-1/+3
|
* Fixed bug #30080 (Passing array or non array of objects)Dmitry Stogov2005-06-031-1/+2
|
* Fixed bug #27598 (list() array key assignment causes HUGE memory leak)Dmitry Stogov2005-06-031-6/+1
|
* - Only allow changing return ref agnostic when a script method overrides anMarcus Boerger2005-05-311-1/+1
| | | | | internal method (found by dmitry)
* - Make zend_do_inheritance ZEND_APIMarcus Boerger2005-05-281-1/+1
|
* Added array type hinting. (This patch requires full re-make)Dmitry Stogov2005-05-261-2/+13
|
* Fixed bug #31525 (object reference being dropped. $this getting lost)Dmitry Stogov2005-05-051-7/+11
|
* Fixed bug #29104 (Function declaration in method doesn't work)Dmitry Stogov2005-04-271-1/+1
|
* Fixed bug #32427 (Interfaces are not allowed 'static' access modifier).Dmitry Stogov2005-04-261-1/+1
|
* Fixed bug #29944 (Function defined in switch, crashes).Dmitry Stogov2005-04-251-1/+1
|
* - Need to copy doc comments correct for propertiesMarcus Boerger2005-04-241-0/+3
|
* - Add ReflectionProperty::getDocComment()Marcus Boerger2005-04-191-3/+17
|
* No c++ comments in C codefoobar2005-04-191-2/+2
|
* - Bugfix #28442Marcus Boerger2005-03-101-6/+0
|
* - New Interface SerializeableMarcus Boerger2005-03-071-0/+2
| | | | | | - Change signature of unserialize() callback to ease inheritance and support code reuse of handlers
* Fixed compile warning (bug #32046)foobar2005-03-061-1/+1
|
* Custom object serializer infrastructureStanislav Malyshev2005-02-231-1/+10
| | | | | # The detailed announce on the list will follow
* Fixed possible memory corruptionDmitry Stogov2005-02-201-4/+8
|
* - Cleanup foreach handlingMarcus Boerger2005-02-111-14/+23
|
* Fixed bug introduced with foreach() optimization patchDmitry Stogov2005-02-071-1/+1
|
* Fixed FE_RESET/FE_FETCH bug.Dmitry Stogov2005-02-071-0/+1
| | | | | Now FE_RESET instruction takes jump-address from itself, not from the following FE_FETCH instruction.