History log of /php-src/Zend/zend_language_parser.y (Results 451 – 475 of 639)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
Revision tags: RELEASE_1_3_1
# ddcf7a2f 12-Feb-2008 Dmitry Stogov

Added NEWDOC

# 51278b6d 12-Feb-2008 Dmitry Stogov

Fixed ext/tokenizer test failures because of token renumbering

# fd597dce 12-Feb-2008 Stanislav Malyshev

[DOC] Add compile-time __DIR__ constant which implements dirname(__FILE__)

# 1ecdaa38 03-Feb-2008 Marcus Boerger

- Fix warnings

Revision tags: php-4.4.8
# 5a3eb537 28-Dec-2007 Dmitry Stogov

Fixed bug #38469 (unexpected creation of cycle, json tests failed, leaks memory)

Revision tags: php-4.4.8RC1
# 64e8f223 13-Dec-2007 Dmitry Stogov

Allowed import of global classes "use ::GlobalClassName;"

# 6484b3c4 07-Dec-2007 Dmitry Stogov

Fixed bug #43344 (Wrong error message for undefined namespace constant)

Revision tags: RELEASE_1_2_3
# 45f6b4ce 21-Nov-2007 Johannes Schlüter

- MFH Improved version of ternary shortcut (Marcus)

# 4a8ed7ab 21-Nov-2007 Johannes Schlüter

- MFH ?: operator (Marcus)
[DOC] "expr1 ?: expr1" is a shortcut for: "expr1 ? expr1 : expr2" as
exists in gcc and discussed some time back. Note that this is not
an impl

- MFH ?: operator (Marcus)
[DOC] "expr1 ?: expr1" is a shortcut for: "expr1 ? expr1 : expr2" as
exists in gcc and discussed some time back. Note that this is not
an implementation ifsetor($var, default). While ifsetor would not
generate any message for non existing variables or array indices
the ternary shortcut does. Also the ternary shortcut does a boolean
evaluation rather then checking for isset(). That way ther ternary
shortcut can work on any expression while ifsetor can only work on
variables. Also to be silent one has do do: "@$expr1 ?: $expr2".

show more ...

# 9f230a0d 20-Nov-2007 Dmitry Stogov

Added support for "namespace::" prefix that is resolved to current namespace name.

# 18a656de 11-Nov-2007 Johannes Schlüter

- MFH: static can't be used as type hint, fixes #43126 (Etienne Kneuss)

Revision tags: php-5.2.5
# b7d87beb 07-Nov-2007 Dmitry Stogov

T_IMPORT -> T_USE

Revision tags: php-5.2.5RC2
# b599e434 23-Oct-2007 Dmitry Stogov

Fixed bug #35163 (Array elements can lose references)

Revision tags: php-5.2.5RC1, BEFORE_IMPORT_OF_MYSQLND_IN_5_3, RELEASE_1_2_2
# 41e9b6b6 01-Oct-2007 Dmitry Stogov

Fixed bug #42802 (Namespace not supported in typehints)

# 166266df 29-Sep-2007 Dmitry Stogov

Added support for Late Static Binding. (Dmitry, Etienne Kneuss)

# f32ffe9b 28-Sep-2007 Dmitry Stogov

Namespaces

# 9483a2ff 27-Sep-2007 Johannes Schlüter

- Readd support for ynamic access of static members (Etienne)

Revision tags: RELEASE_1_2_4, RELEASE_1_2_1, php-5.2.4, RELEASE_1_5, php-5.2.4RC3, php-5.2.4RC2
# c8f090c1 13-Aug-2007 Stanislav Malyshev

Revert variable class patch for 5.2

Revision tags: php-5.2.4RC1
# b3c6a9df 02-Aug-2007 Johannes Schlüter

- Add possibility to call static class members using variables (Etienne Kneuss)

Revision tags: BEFORE_REAL_IMPORT_OF_MYSQLND, BEFORE_IMPORT_OF_MYSQLND, php-5.2.3, RELEASE_1_4, php-5.2.3RC1
# bc2b546d 18-May-2007 Stanislav Malyshev

fix #41401 - parser precedence on unary operators
# now 1/-2*5 is -2.5 as it should be

# 80d2409f 18-May-2007 Dmitry Stogov

Improved compilation of heredocs and interpolated strings. (Matt, Dmitry)

Revision tags: RELEASE_1_2_0, php-4.4.7, php-5.2.2, php-5.2.2RC2, RELEASE_1_1_0, php-4.4.7RC1, php-5.2.2RC1
# 17c0c49a 04-Apr-2007 Ilia Alshanetsky

Addres limitation of __HALT_COMPILER() that allowed only one instance
per request.

# Patch by Greg Beaver

Revision tags: RELEASE_1_0_1, php-4.4.6, php-4.4.6RC1, php-4.4.5, php-5.2.1, RELEASE_1_0_0RC1, php-4.4.5RC2, php-5.2.1RC4, php-5.2.1RC3
# e470e22e 10-Jan-2007 Dmitry Stogov

- Fixed bug #35106 (nested foreach fails when array variable has a reference).
- Fixed bug #36214 (__get method works properly only when conditional operator is used).
- Fixed bug #39449 (Ove

- Fixed bug #35106 (nested foreach fails when array variable has a reference).
- Fixed bug #36214 (__get method works properly only when conditional operator is used).
- Fixed bug #39449 (Overloaded array properties do not work correctly).
- Fixed bug #39990 (Cannot "foreach" over overloaded properties).

show more ...

Revision tags: php-4.4.5RC1, php-5.2.1RC2
# c348c293 20-Dec-2006 Antony Dovgal

MFH: fix #39903 (Notice message when executing __halt_compiler() more than once)

Revision tags: php-5.2.1RC1, php-5.2.0, php-5.2.0RC6, php-5.2.0RC5, php-5.2.0RC4, php-5.2.0RC3, php-5.1.6, php-5.2.0RC2, php-5.1.5, php-4.4.4, php-4.4.4RC1, php-5.1.5RC1, php-4.4.3, php-5.2.0RC1, php-4.4.3RC2, BEFORE_NEW_OUTPUT_API, php-4.4.3RC1
# 7a5240e8 11-May-2006 Marcus Boerger

- MFH missing bits and pieces of the partial sync with head
# This time i added:
# ZEND_FE_RESET_VARIABLE
# ZEND_FE_RESET_REFERENCE
# and dapted parser,compiler,executor,interfaces to

- MFH missing bits and pieces of the partial sync with head
# This time i added:
# ZEND_FE_RESET_VARIABLE
# ZEND_FE_RESET_REFERENCE
# and dapted parser,compiler,executor,interfaces to handle these flags
# their purpose is to be able to pass whetehr foreach is done by ref to
# the current() handler so that it can error out in case it is not capable
# to comply to the requested return signature/protocol/semantics (weyp).

show more ...

1...<<11121314151617181920>>...26