History log of /PHP-7.3/Zend/zend_language_scanner_defs.h (Results 26 – 50 of 114)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.5.0RC3, php-5.3.26, php-5.4.16, php-5.5.0RC2, php-5.3.26RC1, php-5.4.16RC1, php-5.5.0RC1, php-5.3.25, php-5.4.15, php-5.3.25RC1, php-5.5.0beta4, php-5.4.15RC1, php-5.4.14, php-5.3.24, php-5.5.0beta3, php-5.3.24RC1, php-5.4.14RC1
# 85e5e607 27-Mar-2013 Dmitry Stogov

Fixed bug #64529 (Ran out of opcode space)


Revision tags: php-5.5.0beta2, php-5.5.0beta1
# 22159fb7 20-Mar-2013 Pierre Joye

- add new interpolation method
. imagescale
. imageaffine
. replace imagerotate with new generic and optimized new implementations
. imagesetinterpolationmethod, to set the de

- add new interpolation method
. imagescale
. imageaffine
. replace imagerotate with new generic and optimized new implementations
. imagesetinterpolationmethod, to set the default interpolation to be
used with the new functions
. add imagepalettetotruecolor

show more ...


Revision tags: php-5.3.23, php-5.4.13, php-5.5.0alpha6, php-5.3.23RC1, php-5.4.13RC1, php-5.3.22, php-5.5.0alpha5, php-5.4.12, php-5.3.22RC2, php-5.4.12RC2, php-5.3.22RC1, php-5.4.12RC1, php-5.5.0alpha4, php-5.3.21, php-5.4.11, php-5.5.0alpha3, php-5.3.21RC1, php-5.4.11RC1, php-5.3.20, php-5.4.10, php-5.5.0alpha2
# 8ca4288f 06-Dec-2012 Sebastian Bergmann

Leftover: Invoke re2c with --no-generation-date to prevent unintentional / unnecessary changes in generated files.


Revision tags: php-5.3.20RC1, php-5.4.10RC1, php-5.3.19, php-5.4.9
# f99befad 14-Nov-2012 Dmitry Stogov

Fixed compiler reenterability


Revision tags: php-5.5.0alpha1, php-5.3.19RC1, php-5.4.9RC1, php-5.3.18, php-5.4.8, php-5.3.18RC1, php-5.4.8RC1, php-5.3.17, php-5.4.7, php-5.4.7RC1, php-5.3.16, php-5.4.6
# 80d5ae3c 13-Aug-2012 Xinchen Hui

Implemented 'finally' keywords for php

RFC: https://wiki.php.net/rfc/finally
FR: https://bugs.php.net/bug.php?id=32100
and I have got some improvment ideas(performance), will impleme

Implemented 'finally' keywords for php

RFC: https://wiki.php.net/rfc/finally
FR: https://bugs.php.net/bug.php?id=32100
and I have got some improvment ideas(performance), will implemented
later. thanks

show more ...


Revision tags: php-5.4.6RC1
# b477a840 28-Jul-2012 Xinchen Hui

Fixed bug #60194 for eavl

same reason here


# ef7286a4 27-Jul-2012 Xinchen Hui

Fixed bug #60194 (--with-zend-multibyte and --enable-debug reports LEAK with run-test.php)

It's not a big deal, just because lexer will read the char after cursor before leaving


Revision tags: php-5.4.5, php-5.3.15, php-5.3.15RC1, php-5.4.5RC1, php-5.3.14, php-5.4.4
# d939d2de 11-Jun-2012 Nikita Popov

Add sceleton for yield* expression

This does not yet actually implement any delegation.


Revision tags: php-5.3.14RC2, php-5.4.4RC2, php-5.3.14RC1, php-5.4.4RC1
# 9b101ac8 15-May-2012 Nikita Popov

Add T_YIELD "yield" keyword


Revision tags: php-5.3.13, php-5.4.3, php-5.4.2, php-5.3.12
# 1c2c620a 30-Apr-2012 Felipe Pena

- Regenerated files


# 4deb0f1a 30-Apr-2012 Felipe Pena

- Regenerated files


# 16228431 30-Apr-2012 Felipe Pena

- Regenerated files


# ea231929 30-Apr-2012 Felipe Pena

- Regenerated files


Revision tags: php-5.3.11, php-5.4.1, php-5.3.11RC2, php-5.4.1RC2
# b233de09 09-Apr-2012 Nikita Popov

Fix bug #61681: Malformed grammar

Generate T_STRING_VARNAME only if it actually is one. This is only the case
for "${varname}" and "${varname[offset]}" so we can just add a check for

Fix bug #61681: Malformed grammar

Generate T_STRING_VARNAME only if it actually is one. This is only the case
for "${varname}" and "${varname[offset]}" so we can just add a check for
} or [ after the LABEL.

show more ...


# 4cf90e06 30-Mar-2012 Nikita Popov

Fix lexing of nested heredoc strings in token_get_all()

This fixes bug #60097.

Before two global variables CG(heredoc) and CG(heredoc_len) were used to
track the current heredoc

Fix lexing of nested heredoc strings in token_get_all()

This fixes bug #60097.

Before two global variables CG(heredoc) and CG(heredoc_len) were used to
track the current heredoc label. In order to support nested heredoc
strings the *previous* heredoc label was assigned as the token value of
T_START_HEREDOC and the language_parser.y assigned that to CG(heredoc).

This created a dependency of the lexer on the parser. Thus the
token_get_all() function, which accesses the lexer directly without
also running the parser, was not able to tokenize nested heredoc strings
(and leaked memory). Same applies for the source-code highlighting
functions.

The new approach is to maintain a heredoc_label_stack in the lexer, which
contains all active heredoc labels.

As it is no longer required, T_START_HEREDOC and T_END_HEREDOC now don't
carry a token value anymore.

In order to make the work with zend_ptr_stack in this context more
convenient I added a new function zend_ptr_stack_top(), which retrieves the
top element of the stack (similar to zend_stack_top()).

show more ...


Revision tags: php-5.3.11RC1, php-5.4.1RC1
# c6e15455 28-Mar-2012 Gustavo André dos Santos Lopes

Revert "- fix bug #61504, fix build errors on windows and possibly other"

This reverts commit 74ee335e3aea8c48380334098b8d20eb54d6c6be.


# 74ee335e 27-Mar-2012 Pierre Joye

- fix bug #61504, fix build errors on windows and possibly other


Revision tags: PHP-5.4.1-RC1
# 1953161b 02-Mar-2012 Pierrick Charron

Fixed bug #61225 (Lexing 0b0*+<NUM> incorectly)


# f7cd0588 02-Mar-2012 Pierrick Charron

Fixed bug #61225 (Lexing 0b0*+<NUM> incorectly)


Revision tags: php-5.4.0
# c51f7379 20-Feb-2012 Etienne Kneuss

Fix #61095 (Lexing 0x0*+<NUM> incorrectly)


# eefefddc 20-Feb-2012 Etienne Kneuss

Fix #61095 (Lexing 0x0*+<NUM> incorrectly)


# 86fcb965 20-Feb-2012 Etienne Kneuss

Fix #61095 (Lexing 0x0*+<NUM> incorrectly)


Revision tags: php-5.4.0RC8, php-5.3.10, php-5.4.0RC7, php-5.4.0RC6
# a1525977 17-Jan-2012 Dmitry Stogov

Regenerated scanners


# 877f97cd 17-Jan-2012 Dmitry Stogov

Regenerated scanners


Revision tags: php-5.3.9, php-5.4.0RC5, php-5.3.9RC4, php-5.4.0RC4, php-5.3.9RC3, php-5.4.0RC3, php-5.3.9RC2, php-5.4.0RC2, php-5.4.0RC1, php-5.3.9RC1, php-5.4.0beta2, php-5.4.0beta1
# 1257328d 13-Sep-2011 Dmitry Stogov

Fixed ZE specific compile warnings (Bug #55629)


12345