Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | remove irrelevant codes in test | Xinchen Hui | 2011-12-05 | 1 | -5/+1 |
| | |||||
* | Add xfaild test for a secluded issue | Xinchen Hui | 2011-12-05 | 1 | -0/+34 |
| | |||||
* | Fixed bug #60444 (Segmentation fault with include & class extending) | Dmitry Stogov | 2011-12-05 | 1 | -0/+18 |
| | |||||
* | - Added tests for bug #60350 | Felipe Pena | 2011-11-30 | 1 | -0/+11 |
| | | | | | patch by: php@mickweiss.com | ||||
* | Fixed Bug #60369 Crash with static property in trait | Stefan Marr | 2011-11-23 | 1 | -0/+17 |
| | |||||
* | - Fix tests | Felipe Pena | 2011-11-19 | 3 | -3/+7 |
| | |||||
* | - Fixed bug #43200 (Interface implementation / inheritence not possible in ↵ | Felipe Pena | 2011-11-19 | 2 | -0/+76 |
| | | | | abstract classes) | ||||
* | Fixes Bug #54441 (Handling of changing modifiers on a trait alias) | Stefan Marr | 2011-11-18 | 1 | -0/+19 |
| | | | | | # this now results also in a compilation error, since it would open the door for inconsistencies, and violates the DRY principle. | ||||
* | Fixed bug #60138 (GC crash with referenced array in RecursiveArrayIterator) | Dmitry Stogov | 2011-11-18 | 1 | -0/+16 |
| | |||||
* | Fixed Bug #60165 (Aliasing unexisting trait should throw/trigger the ↵ | Stefan Marr | 2011-11-17 | 5 | -2/+79 |
| | | | | | | | | | | | | | | | | | exception/error) - aliases that are not actually matching anything are treated as errors now. This will make sure that all methods that are expected to be in a class are actually there, or in case a trait changed for instance, that the code breaks already on composition - Precedence declarations are also checked to ensure that the method which is supposed to take precedence actually exists, however, the other traits mentioned in the declaration are not regarded. We are more lenient here, since this avoids unnecessary fragility. - fixed another seamingly unrelated test which broke in the progress but wasn't clear before either. | ||||
* | - Fixed bug #60099 (__halt_compiler() works in braced namespaces) | Felipe Pena | 2011-11-16 | 1 | -0/+10 |
| | |||||
* | - Added class member access on instantiation (e.g. (new foo)->bar()) support | Felipe Pena | 2011-11-06 | 6 | -0/+143 |
| | |||||
* | Fixed Bug #60217 (Requiring the same method from different traits) | Stefan Marr | 2011-11-05 | 3 | -0/+78 |
| | | | | | - also added test to check for inconsistent abstract method definitions, they need to be compatible | ||||
* | Fix bug #60169 Conjunction of ternary and list crashes PHP | Xinchen Hui | 2011-11-03 | 1 | -2/+0 |
| | |||||
* | adding memory check for FreeBSD also, TODO: refactor the free memory check ↵ | Ferenc Kovacs | 2011-11-02 | 1 | -0/+19 |
| | | | | into a function in an include file | ||||
* | Fixed bug #60139 (Anonymous functions create cycles not detected by the GC) | Dmitry Stogov | 2011-11-02 | 1 | -0/+30 |
| | |||||
* | allocating more than 2GB memory is slow. | Ferenc Kovacs | 2011-11-01 | 1 | -0/+1 |
| | |||||
* | Fixed Bug #60153 (Interface method prototypes not enforced when implementd ↵ | Stefan Marr | 2011-11-01 | 2 | -1/+20 |
| | | | | | | | | | | via traits.) # Moved the freeing of overriden functions to a point after the check. # The new check comes after the normal inheritance check to give the first check # the opportunity to abort with a more detailed error. # Also fixed a small type in an unrelated test. | ||||
* | Added missing consistency check for abstract methods required by one trait ↵ | Stefan Marr | 2011-11-01 | 2 | -0/+51 |
| | | | | and implemented by another. | ||||
* | Fixed Bug #60145 (Usage of trait's use statement inside interfaces not ↵ | Stefan Marr | 2011-11-01 | 1 | -0/+17 |
| | | | | properly checked.) | ||||
* | Fixed Bug #60173 (Wrong error message on reflective trait instantiation) | Stefan Marr | 2011-10-31 | 1 | -0/+12 |
| | |||||
* | Update tests | Xinchen Hui | 2011-10-31 | 1 | -1/+2 |
| | |||||
* | Test for #60174 (Notice when array in method prototype error) | Xinchen Hui | 2011-10-31 | 1 | -0/+16 |
| | |||||
* | tests for 60169 | Xinchen Hui | 2011-10-30 | 1 | -0/+12 |
| | |||||
* | check the available memory on linux and skip if it is not enough | Ferenc Kovacs | 2011-10-23 | 1 | -0/+15 |
| | |||||
* | shave off 900M memory from this test | Ferenc Kovacs | 2011-10-22 | 1 | -4/+1 |
| | |||||
* | Changed silent conversion of array to string to produce a notice. (Patrick) | Stanislav Malyshev | 2011-10-21 | 4 | -1/+23 |
| | |||||
* | Fixed Bug #55554 (Legacy constructors not handled properly) [TRAITS] [DOC] | Stefan Marr | 2011-10-09 | 8 | -2/+258 |
| | | | | | | | | | | | | | # The handling of legacy constructors defined by traits was corrected. # They are now properly registered and used on instantiation. # The situation for conflicting legacy and __construct constructors is # mostly identical. If they are defined in the class, they override conflicts # and do not collide. However, in case different styles are mixed, between # class and trait definition, we assume a programmer's mistake and report # a collision. # # BTW: +1 for all the fixed tests! `make test` is fun again. | ||||
* | Fixed bug #55825, and add test script | Xinchen Hui | 2011-10-03 | 1 | -0/+17 |
| | |||||
* | Improve the warning message of incompatible arguments. (#55719) | Xinchen Hui | 2011-09-23 | 16 | -11/+90 |
| | | | | | And fix tests related. | ||||
* | - Fixed bug #55705 (Omitting a callable typehinted argument causes a segfault) | Felipe Pena | 2011-09-17 | 1 | -0/+9 |
| | | | | | patch by: laruence@php | ||||
* | Fixed test bug #55713 (Christopher Jones) | Pierrick Charron | 2011-09-16 | 1 | -1/+1 |
| | |||||
* | Fixed bug #55578 (Segfault on implode/concat) | Dmitry Stogov | 2011-09-14 | 1 | -0/+20 |
| | |||||
* | Fixed bug #55509 (segfault on x86_64 using more than 2G memory). (Laruence) | Dmitry Stogov | 2011-09-13 | 1 | -0/+33 |
| | |||||
* | Remove bogus skipif and make adjust the tests | Hannes Magnusson | 2011-09-07 | 2 | -7/+8 |
| | |||||
* | Commit Gustavo's closure rebinding patch as desided by vote | Stanislav Malyshev | 2011-09-07 | 10 | -2/+551 |
| | |||||
* | - fix skipif | Pierre Joye | 2011-09-06 | 1 | -2/+0 |
| | |||||
* | - parser version independent | Pierre Joye | 2011-08-31 | 1 | -1/+1 |
| | |||||
* | - parser version independent | Pierre Joye | 2011-08-31 | 1 | -1/+1 |
| | |||||
* | - use only the test name | Pierre Joye | 2011-08-31 | 1 | -9/+9 |
| | |||||
* | - use only the test name | Pierre Joye | 2011-08-31 | 1 | -9/+9 |
| | |||||
* | - use only the test name | Pierre Joye | 2011-08-31 | 1 | -3/+3 |
| | |||||
* | - use only test name | Pierre Joye | 2011-08-31 | 1 | -1/+1 |
| | |||||
* | - make it parser version independent | Pierre Joye | 2011-08-31 | 1 | -2/+2 |
| | |||||
* | Fixed bug #55524 Traits should not be able to extend a class | Stefan Marr | 2011-08-29 | 1 | -0/+15 |
| | | | | | # also used the Z_STRVAL where it seemed appropriate | ||||
* | Fix bug #55445 (Incomplete implementation of <?= being independant of ↵ | Etienne Kneuss | 2011-08-17 | 1 | -0/+8 |
| | | | | short_open_tag) | ||||
* | Callable typehint following the rules of is_callable($arg, false); | Hannes Magnusson | 2011-08-16 | 3 | -0/+87 |
| | |||||
* | Bug #55424 Fatal error when calling a method from a trait that is defined in ↵ | Stefan Marr | 2011-08-15 | 1 | -0/+35 |
| | | | | | | | parent class and required by using an abstract method in the trait. # The method got unconditionally deleted from the class, since it was assumed that we override it, but we did not in case of abstract methods coming from a trait. Thus, dont delete when we try to merge in an abstract method. | ||||
* | Fixed Bug #55355: Inheritance chain was not regarded when checking whether ↵ | Stefan Marr | 2011-08-15 | 1 | -0/+46 |
| | | | | the abstract method of a trait is satisfied. | ||||
* | Fixed Bug #55372 Incorrect handling of literals led to memory corruption. | Stefan Marr | 2011-08-15 | 1 | -0/+28 |
| | | | | | | # Dmitry you might want to review this patch, since I split up zend_add_literal # and added a version for post-pass_two() usage. |