History log of /PHP-5.5/Zend/zend_language_scanner.c (Results 76 – 100 of 129)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# e3bb9348 15-Sep-2010 Dmitry Stogov

Regenerated


Revision tags: oci8-1.4.3, php-5.2.14, php-5.3.3, php-5.3.3RC3, php-5.2.14RC3, php-5.3.3RC2, php-5.2.14RC2
# 4e606e3c 30-Jun-2010 Felipe Pena

- Fixed bug #48930 (__COMPILER_HALT_OFFSET__ incorrect in PHP >= 5.3)


# f6f0f65b 30-Jun-2010 Felipe Pena

- Fixed bug #48930 (__COMPILER_HALT_OFFSET__ incorrect in PHP >= 5.3)


# f2419953 30-Jun-2010 Felipe Pena

- MF5.3: Reverted fix for bug #48930 (due binary compatibility breakage)
# To commit a new common fix


# 96bb25e8 29-Jun-2010 Felipe Pena

- Reverted fix for bug #48930 (due binary compatibility breakage)


# 9b07568c 27-Jun-2010 Felipe Pena

- Fixed bug #48930 (__COMPILER_HALT_OFFSET__ incorrect in PHP >= 5.3)


# 3396a6d1 27-Jun-2010 Felipe Pena

- Fixed bug #48930 (__COMPILER_HALT_OFFSET__ incorrect in PHP >= 5.3)


Revision tags: php-5.3.3RC1, php-5.2.14RC1
# 33fae4ca 24-May-2010 Ilia Alshanetsky

Added support for numeric & scalar type hint as defined within
http://wiki.php.net/rfc/typecheckingstrictandweak RFC


# ab9de550 23-May-2010 Ilia Alshanetsky

Allow arbitrary number of space characters between type-hint and method/function parameter


# 1bc92476 20-May-2010 Derick Rethans

- Added scalar typehinting.


# cd6415f1 22-Apr-2010 Stefan Marr

Implemented Traits for PHP as proposed in the RFC [TRAITS]

# RFC http://wiki.php.net/rfc/horizontalreuse#traits_-_reuse_of_behavior
# Ok, here we go, I guess that will result in more dis

Implemented Traits for PHP as proposed in the RFC [TRAITS]

# RFC http://wiki.php.net/rfc/horizontalreuse#traits_-_reuse_of_behavior
# Ok, here we go, I guess that will result in more discussion, which is fine
# by me. But now, the patch is here, and properly archived.
#
# See below a list of notes to the patch, it also includes a list of
# points which should be fixed
#
# Internals of the Traits Patch
# -----------------------------
#
# Open TODOs
# """"""""""
#
# - Reflection API
# - support for traits for internal classes
# - currently destroy_zend_class does not handle that case
#
# Introduced Structures
# """""""""""""""""""""
#
# Data structures to encode the composition information specified in the
# source:
# - zend_trait_method_reference
# - zend_trait_precedence
# - zend_trait_alias
#
# Changes
# """""""
#
# zend_class_entry
# - uses NULL terminated lists of pointers for
# - trait_aliases
# - trait_precedences
# - do you prefer an explicit counter?
# - the information is only necessary during class composition
# but might be interesting for reflection
# - did not want to blow up class further with not really necessary length counters
#
# added keywords
# - trait
# - insteadof
#
# Added opcodes
# ZEND_ADD_TRAIT
# - similar to ZEND_ADD_INTERFACE
# - adds the trait to the list of traits of a class, no actual composition done
# ZEND_BIND_TRAITS
# - emitted in zend_do_end_class_declaration
# - concludes the class definition and will initiate the trait composition
# when the class definition is encountered during runtime
#
# Added Flags
# ZEND_ACC_TRAIT = 0x120
# ZEND_ACC_IMPLEMENT_TRAITS = 0x400000
# ZEND_FETCH_CLASS_TRAIT = 14
#
# zend_vm_execute.h
# - not sure whether the handler initialization (ZEND_ADD_TRAIT_SPEC_HANDLER,
# ZEND_BIND_TRAITS_SPEC_HANDLER) is correct, maybe it should be more selective
#
# zend_compile.c
# - refactored do_inherit_method_check
# split into do_inherit_method_check and do_inheritance_check_on_method
# - added helper functions use a '_' as prefix and are not mentioned in the
# headers
# - _copy_functions
# prepare hash-maps of functions which should be merged into a class
# here the aliases are handled
# - _merge_functions
# builds a hash-table of the methods which need to be added to a class
# does the conflict detection
# - reused php_runkit_function_copy_ctor
# - it is not identical with the original code anymore, needed to update it
# think I fixed some bugs, not sure whether all have been reported back to runkit
# - has to be renamed, left the name for the moment, to make its origin obvious
# - here might be optimization potential
# - not sure whether everything needs to be copied
# - copying the literals might be broken
# - added it since the literals array is freed by efree and gave problems
# with doubled frees
# - all immutable parts of the zend_op array should not be copied
# - am not sure which parts are immutable
# - and not sure how to avoid doubled frees on the same arrays on shutdown
# - _merge_functions_to_class
# does the final merging with the target class to handle inherited
# and overridden methods
# - small helper for NULL terminated lists
# zend_init_list, zend_add_to_list
#
# zend_language_parser.y
# - reused class definition for traits
# - there should be something with regard to properties
# - if they get explicitly defined, it might be worthwhile to
# check that there are no collisions with other traits in a composition
# (however, I would not introduce elaborate language features to control that
# but a notice for such conflicts might be nice to the developers)

show more ...


# 0bba0bfd 20-Apr-2010 Dmitry Stogov

regenerated files


Revision tags: php-5.3.2, php-5.2.13, php-5.3.2RC3, php-5.3.2RC2, php-5.2.13RC2
# 15a3c450 11-Feb-2010 Pierre Joye

- those are in 5.3.2 now, merge to 5.3.2 section is coming


Revision tags: php-5.2.13RC1
# d2281d1d 05-Jan-2010 Sebastian Bergmann

sed -i "s#1998-2009#1998-2010#g" **/*.c **/*.h **/*.php


Revision tags: php-5.3.2RC1, php-5.2.12, php-5.2.12RC4, php-5.2.12RC3, php-5.2.12RC2, php-5.3.1
# 5dd6b9ff 17-Nov-2009 Felipe Pena

- Fixed bug #50145 (crash while running bug35634.phpt)


Revision tags: php-5.3.1RC4, php-5.2.12RC1, php-5.3.1RC3, php-5.3.1RC2, oci8-1.4.0, php-5.2.11
# 0f1b93a1 10-Sep-2009 Jani Taskinen

- Fix skips


Revision tags: php-5.2.11RC3, php-5.3.1RC1, php-5.2.11RC2, php-5.2.11RC1, php-5.3.0, php-5.3.0RC4, php-5.2.10, php-5.2.10RC2, php-5.3.0RC3, php-5.2.10RC1, php-5.3.0RC2
# e7c5f3cf 05-May-2009 Matt Wilmas

Regenerate


# 7ef3db0e 26-Mar-2009 Dmitry Stogov

Fixed bug #47516 (nowdoc can not be embed in heredoc but can be embed in double quote)


# bcd9099b 25-Mar-2009 Dmitry Stogov

Fixed bug #47038 (Memory leak in include)


Revision tags: php-5.3.0RC1, RELEASE_1_3_5
# dd031eee 16-Mar-2009 Brian Shire

MFH: Fix scanner handling of NULL values in heredoc, nowdoc, strings, comments, and non-parsed content.


# 9c16bfa1 11-Mar-2009 Brian Shire

MFH: Add proper EOF handling for language scanner. Fixes bug #46817.


Revision tags: php-5.2.9, php-5.2.9RC3
# 8eea9984 14-Feb-2009 Rasmus Lerdorf

Unmangle


# 70ecb307 14-Feb-2009 Rasmus Lerdorf

2.4.1 is safe


Revision tags: php-5.2.9RC2, php-5.2.9RC1, php-5.3.0beta1
# 71ea9535 09-Jan-2009 Ilia Alshanetsky

MFH: Corrected fix for bug #46844 to only trigger on the 1st line of CLI
opened files.


# bfcea7ff 02-Jan-2009 Felipe Pena

- MFH: Year++


123456