summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.c
Commit message (Expand)AuthorAgeFilesLines
* Fixed bug #44952 (isset() does not checks correctly variable variable)Dmitry Stogov2008-05-121-1/+4
* Use IS_CV for dirrent access to $this variableDmitry Stogov2008-05-071-37/+77
* - Use ZEND_FREE() opcode instead of ZEND_SWITCH_FREE(IS_TMP_VAR)Dmitry Stogov2008-05-051-4/+13
* Support for old-style constructors in namespacesDmitry Stogov2008-05-051-7/+15
* Lazy EG(active_symbol_table) initializationDmitry Stogov2008-04-291-10/+6
* fix heredoc+nowdocNuno Lopes2008-04-101-2/+0
* Bug #44653 (Invalid namespace name resolution)Dmitry Stogov2008-04-091-10/+3
* MFH: Implemented "jump label" operator (limited "goto")Felipe Pena2008-03-281-0/+111
* Removed unused variableIlia Alshanetsky2008-03-251-2/+0
* MFH:Felipe Pena2008-03-251-18/+9
* - SimplifyMarcus Boerger2008-03-211-2/+1
* Removed hack (we don't need to modify class name).Dmitry Stogov2008-03-181-8/+4
* Implemented concept of "delayed early binding" that allows opcode caches to p...Dmitry Stogov2008-03-181-59/+60
* MFH: fix #39127 (Old-style constructor fallbacks produce strange results)Antony Dovgal2008-03-171-2/+3
* - Rewrite scanner to be based on re2c instead of flexMarcus Boerger2008-03-161-51/+12
* Code simplificationDmitry Stogov2008-03-121-14/+1
* Optimized ZEND_FETCH_CLASS + ZEND_ADD_INTERFACE into single ZEND_ADD_INTERFAC...Dmitry Stogov2008-03-121-16/+6
* Fixed bug #44414 (Incomplete reporting about abstract methods)Dmitry Stogov2008-03-121-3/+7
* Remove inconsistent behaviour when a protected static prop is overridden by p...Robin Fernandes2008-03-031-12/+0
* MFH: Allow implementation of abstract methods with optional parameters (Chris...Johannes Schlüter2008-03-011-1/+1
* - MFH Add E_DEPRECATED (Lars Strojny, Felipe Pena, Marcus)Marcus Boerger2008-02-231-2/+2
* Fixed bug #44184 (Double free of loop-variable on exception)Dmitry Stogov2008-02-201-5/+11
* Added NEWDOCDmitry Stogov2008-02-121-0/+1
* fix foldingStanislav Malyshev2008-02-121-0/+3
* [DOC] Add compile-time __DIR__ constant which implements dirname(__FILE__)Stanislav Malyshev2008-02-121-0/+92
* MFH: fix typo and bug #43646Antony Dovgal2008-01-291-1/+1
* Additional executor specializationDmitry Stogov2008-01-231-10/+26
* Changed exception handling. Now each op_array doesn't contain ZEND_HANDLE_EXC...Dmitry Stogov2008-01-211-1/+0
* Fixed bug #43703 (Signature compatibility check broken)Dmitry Stogov2008-01-091-2/+2
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
* Fixed bug #38469 (unexpected creation of cycle, json tests failed, leaks memory)Dmitry Stogov2007-12-281-9/+34
* Initialize operand typeDmitry Stogov2007-12-281-0/+1
* Use proper result typeDmitry Stogov2007-12-271-1/+2
* Allowed import of global classes "use ::GlobalClassName;"Dmitry Stogov2007-12-131-2/+2
* Allowed multiple namespaces per file (Gregory)Dmitry Stogov2007-12-131-6/+13
* Fixed bug #43344 (Wrong error message for undefined namespace constant)Dmitry Stogov2007-12-071-13/+40
* Fixed uninitialized valueDmitry Stogov2007-12-041-3/+2
* Fixed bug #43332 (self and parent as type hint in namespace)Dmitry Stogov2007-12-031-1/+7
* Fixed bug #43128 (Very long class name causes segfault)Dmitry Stogov2007-11-221-2/+3
* Fixed bug #43318Dmitry Stogov2007-11-221-0/+4
* Speed-up of ZEND_DO_FCALL and ZEND_INIT_FCALL_BY_NAME by lowercasing and calc...Dmitry Stogov2007-11-221-7/+40
* - MFH Improved version of ternary shortcut (Marcus)Johannes Schlüter2007-11-211-0/+37
* Added support for "namespace::" prefix that is resolved to current namespace ...Dmitry Stogov2007-11-201-1/+34
* MFH: disallow multiple access modifiers and 'abstract abstract' methods (patc...Antony Dovgal2007-11-131-2/+13
* better error messagesDmitry Stogov2007-11-121-5/+5
* MFH: fix error message (reported by Felipe Nascimento)Antony Dovgal2007-11-121-1/+1
* Fixed bug #43183 ("use" of the same class in difference scripts results in a ...Dmitry Stogov2007-11-121-4/+28
* Fixed type-hint compatibility check in namespacesDmitry Stogov2007-11-091-1/+12
* Fixed implementation of internal interfaces in namesapcesDmitry Stogov2007-11-091-1/+1
* T_IMPORT -> T_USEDmitry Stogov2007-11-071-3/+3