summaryrefslogtreecommitdiff
path: root/Zend/zend_execute.c
Commit message (Expand)AuthorAgeFilesLines
* - Fix problem with debug_backtrace() reported by Stig. We weren't reportingAndi Gutmans2002-07-261-0/+1
* - Nuke delete(). It was a big mistake to introduce it and I finallyAndi Gutmans2002-07-141-48/+0
* - Nuke some unused codeAndi Gutmans2002-07-141-29/+0
* - Fix problem where scope was lost in nested function calls.Andi Gutmans2002-07-061-10/+7
* - Improve some error messages.Andi Gutmans2002-06-291-1/+1
* - Fix problem with scope's not changing correctly during method calls.Andi Gutmans2002-06-261-1/+1
* - Revert patch which checks at run-time if you're allowed to assignAndi Gutmans2002-06-241-6/+0
* - Fix problem with constructor not being inherited and called correctly.Andi Gutmans2002-06-231-1/+3
* - Fix bug in class constantsAndi Gutmans2002-06-161-2/+2
* - Fix problem with assigning functions by reference.Andi Gutmans2002-06-111-2/+12
* Fix leakStanislav Malyshev2002-06-101-0/+1
* Remove unused local variable.Sebastian Bergmann2002-06-051-1/+0
* - Allow overloaded objects to receive the method name in its originalAndi Gutmans2002-06-051-22/+4
* - Hopefully fix problems with debug_backtrace()Andi Gutmans2002-05-081-0/+13
* - More debug backtrace work. It still doesn't work very well...Andi Gutmans2002-05-071-3/+1
* Initial support for built-in backtracing.Andi Gutmans2002-05-021-51/+39
* some type cleanup workHarald Radi2002-04-231-3/+3
* - Pass TSRMLS to callbacks.Andi Gutmans2002-03-151-5/+5
* - Scope fix. When calling an imported function the scope will changeAndi Gutmans2002-03-151-5/+4
* - Fix issues with $this when using it by itself without indirection such asAndi Gutmans2002-03-151-68/+35
* fix for delete $this and unset $thisStanislav Malyshev2002-03-141-17/+32
* - Fix bug introduced with latest class hash table change.Andi Gutmans2002-03-121-1/+1
* - make class tables contain class_entry *, not class_entryStanislav Malyshev2002-03-121-19/+34
* - Fix build in ZTS mode.Andi Gutmans2002-03-101-8/+10
* New stuff for objects API:Stanislav Malyshev2002-03-101-1/+303
* - Support importing constants. e.g.:Andi Gutmans2002-03-081-1/+44
* - Add function * and class * functionality. Only constants are left.Andi Gutmans2002-03-061-2/+6
* - Initial patch to support importing from class scopes (for Stig).Andi Gutmans2002-03-021-0/+61
* - Remove use of C++ reserved words namespace/thisAndi Gutmans2002-03-011-52/+41
* Mega-commit: Enter the new object modelStanislav Malyshev2002-02-071-252/+160
* - This small patch should also take care of allowing unseting of $this->fooAndi Gutmans2002-02-041-2/+7
* - Fix problem with the objects_destructor called during shutdown. It wasAndi Gutmans2002-02-041-44/+135
* - Fix a bug reported by Sebastian with indirect class names not working.Andi Gutmans2002-01-221-10/+20
* - Improve performance of functions that use $GLOBALS[]Andi Gutmans2002-01-201-13/+0
* - Change exception handling to use the Java-like catch(MyException $exception)Andi Gutmans2002-01-131-8/+27
* - Make sure $this is passed on to methodsAndi Gutmans2002-01-061-4/+12
* Happy New Year.Sebastian Bergmann2002-01-061-1/+1
* - Allow passing of $this as function arguments.Andi Gutmans2002-01-051-6/+22
* - Significantly improve the performance of method calls and $this->memberAndi Gutmans2002-01-051-22/+27
* - Improve performance of indirect-referenced function callsAndi Gutmans2002-01-041-10/+25
* - Separate other kinds of function calls too.Andi Gutmans2002-01-041-76/+134
* - Start splitting up different kinds of function calls into differentAndi Gutmans2002-01-041-23/+27
* - MFZE1 for exit fix, exposing current function name in error messages andDerick Rethans2002-01-031-1/+2
* - Support default arguments for reference parametersAndi Gutmans2001-12-281-8/+8
* - Support parent:: againAndi Gutmans2001-12-271-1/+10
* - Fix scoping issue. The following works now:Andi Gutmans2001-12-261-0/+1
* - Initial support for _clone()Andi Gutmans2001-12-261-0/+12
* - Fix a crash (not a thorough fix).Andi Gutmans2001-12-251-0/+2
* - Fixed bug where global functions weren't called if they didn't existAndi Gutmans2001-12-241-4/+11
* - Fix crash bug in startup code.Andi Gutmans2001-12-131-2/+16