History log of /PHP-7.0/Zend/zend_language_parser.y (Results 176 – 200 of 498)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 75c0db11 30-May-2014 Nikita Popov

Integrate combined scalar as dereferencable


# 46a2ca83 30-May-2014 Nikita Popov

Generalize expression dereferencing


# 5712f0e9 30-May-2014 Nikita Popov

Minor cleanup


# 87f8e758 30-May-2014 Nikita Popov

Cleanup old grammar rules


# 295d07e3 30-May-2014 Nikita Popov

Reintroduce new expression dereferencing


# 067fca0e 30-May-2014 Nikita Popov

Remove reference_variable indirection


# e89958a6 30-May-2014 Nikita Popov

Make function calls directly callable


# 667f8409 30-May-2014 Nikita Popov

Recursive definition for object proprety fetches


# a8c15950 30-May-2014 Nikita Popov

LTR static member access


# b8b3b355 30-May-2014 Nikita Popov

Use recursion for property fetches


# 46e35e3d 30-May-2014 Nikita Popov

Get rid of base_variable_with_function_calls


# e2be2cee 30-May-2014 Nikita Popov

Temporarily disable complex variables in new expressions


# 95a3a126 30-May-2014 Nikita Popov

Change precedence of $ operator

$$foo['bar'] is now interpreted as ${$foo}['bar'] rather than
${$foo['bar']}.


Revision tags: php-5.4.29, php-5.5.13, php-5.5.13RC1, php-5.6.0beta3, php-5.4.29RC1
# 0c6a6f0f 07-May-2014 Dmitry Stogov

Re-applyed Bob's patch with minor fixes


# 4ecc5279 06-May-2014 Dmitry Stogov

Reverted Bob's patch (it breaks many tests when run with opcache and needs to be fixed first).


# f3c1881f 06-May-2014 Bob Weinand

Re-added fix for bug #66015 and adapted for phpng branch


Revision tags: php-5.6.0beta2
# 17d027ed 30-Apr-2014 Dmitry Stogov

Split IS_BOOL into IS_FALSE and IS_TRUE


Revision tags: php-5.5.12, php-5.4.28
# 4912bec5 22-Apr-2014 Nikita Popov

Fix zts


# 3d3a55cb 22-Apr-2014 Nikita Popov

Pass expected array size hint in INIT_ARRAY

To avoid unnecessary rehashes


Revision tags: php-5.4.28RC1, php-5.5.12RC1
# ee2a7c7d 11-Apr-2014 Bob Weinand

Fixed disallowal of array usage in constants at run-time
Added at the same time the possibility of array dereferencing
to complete the set of features (useful application of arrays in constan

Fixed disallowal of array usage in constants at run-time
Added at the same time the possibility of array dereferencing
to complete the set of features (useful application of arrays in constants)

show more ...


# f614fc68 11-Apr-2014 Bob Weinand

Fix bug #66015 by reverting "Removed operations on constant arrays."


Revision tags: php-5.6.0beta1
# 20f2e598 09-Apr-2014 Nikita Popov

Fix ZTS build

This only makes it compile, it doesn't actually work, presumably
because interned strings are assumed in some places.


# 76cc99fe 03-Apr-2014 Dmitry Stogov

Refactored ZVAL flags usage to simplify various checks (e.g. Z_REFCOUNTED(), candidate for GC, etc)


Revision tags: php-5.4.27, php-5.5.11, php-5.5.11RC1, php-5.4.27RC1
# 3d1fa4cb 06-Mar-2014 Tjerk Meesters

Allow T_POW in constant expressions


Revision tags: php-5.5.10, php-5.4.26, php-5.6.0alpha3
# 2eae1879 25-Feb-2014 Nikita Popov

Store arg_num in fcall entry

Instead of storing the argument number in the znode of the parameter
list, store it in fcall->arg_num. This mainly cleans up the parameter
parsing code,

Store arg_num in fcall entry

Instead of storing the argument number in the znode of the parameter
list, store it in fcall->arg_num. This mainly cleans up the parameter
parsing code, which previously had to duplicate all rules (this
becomes more excessive as more features are added, e.g. named params
would already require a minimum of 14 rules...)

show more ...


12345678910>>...20