History log of /PHP-7.4/ext/reflection/php_reflection.c (Results 176 – 200 of 759)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.6.20, php-5.5.34, php-7.0.5, php-5.6.20RC1, php-7.0.5RC1, php-5.6.19
# c67c166f 02-Mar-2016 Dmitry Stogov

Removed zend_fcall_info.symbol_table


Revision tags: php-5.5.33, php-7.0.4, php-5.6.19RC1, php-7.0.4RC1, php-5.6.18, php-7.0.3, php-5.5.32
# 8412de9d 28-Jan-2016 Andrea Faulds

Support void return type in reflection


Revision tags: php-5.6.18RC1
# 11cf826b 20-Jan-2016 Joe Watkins

fix ReflectionClass::__toString doc block omitted


# b899656e 20-Jan-2016 Joe Watkins

fix ReflectionClass::__toString doc block omitted


Revision tags: php-7.0.3RC1, php-5.6.17, php-5.5.31, php-7.0.2
# 49493a2d 01-Jan-2016 Lior Kaplan

Happy new year (Update copyright to 2016)


Revision tags: php-7.0.2RC1, php-5.6.17RC1
# 0adbf6de 09-Dec-2015 Xinchen Hui

Remove useless check


Revision tags: php-7.0.1RC1
# c58b0cb4 08-Dec-2015 Dmitry Stogov

Removed useless checks


# a75c1950 08-Dec-2015 Dmitry Stogov

Implemented the RFC `Support Class Constant Visibility`.

Squashed commit of the following:

commit f11ca0e7a57793fa0e3e7f6d451720e6c42bb0b9
Author: Dmitry Stogov <dmitry@zend.com

Implemented the RFC `Support Class Constant Visibility`.

Squashed commit of the following:

commit f11ca0e7a57793fa0e3e7f6d451720e6c42bb0b9
Author: Dmitry Stogov <dmitry@zend.com>
Date: Tue Dec 8 12:38:42 2015 +0300

Fixed test expectation

commit 211f873f542504d0a0f72b6b5cb23908a1c99a2d
Author: Dmitry Stogov <dmitry@zend.com>
Date: Tue Dec 8 12:28:38 2015 +0300

Embed zend_class_constant.flags into zend_class_constants.value.u2.access_flags

commit 51deab84b2cdbf9cdb1a838cf33b2ee45c61748b
Author: Dmitry Stogov <dmitry@zend.com>
Date: Mon Dec 7 11:18:55 2015 +0300

Fixed issues found by Nikita

commit 544dbd5b47e40d38a8ccb96bc5583e9cb7fdd723
Author: Dmitry Stogov <dmitry@zend.com>
Date: Sat Dec 5 02:41:05 2015 +0300

Refactored immplementation of https://wiki.php.net/rfc/class_const_visibility
@reeze created an RFC here and I emailed internals here and didn't get any responses positive/negative.

show more ...


# 3ae33415 04-Dec-2015 Xinchen Hui

Fixed bug #71018 (ReflectionProperty::setValue() behavior changed)


Revision tags: php-7.0.0
# 6cb6c044 27-Nov-2015 Xinchen Hui

Fixed bug #70982 (setStaticPropertyValue behaviors inconsistently with 5.6)


Revision tags: php-5.6.16, php-7.0.0RC8, php-7.0.0RC7, php-5.6.16RC1, php-5.6.15, php-7.0.0RC6
# 95446b44 23-Oct-2015 Xinchen Hui

Indents


# bbaf6daa 22-Oct-2015 c9s

Fix boolean conversion warnings

Summary:

The compiler complains and raised some warnings about boolean
conversion:

warning: address of 'ce->constants_table' will al

Fix boolean conversion warnings

Summary:

The compiler complains and raised some warnings about boolean
conversion:

warning: address of 'ce->constants_table' will always evaluate to
'true' [-Wpointer-bool-conversion]

Since the address of 'HashTable' will always evaluate to true. the
condition should be removed. The scope is kept for local variables.

Platform:

OS X 10.11

Compiler:

Apple LLVM version 7.0.0 (clang-700.0.72)
Target: x86_64-apple-darwin15.0.0
Thread model: posix

show more ...


# 01558e4c 23-Oct-2015 Xinchen Hui

Indents


# fdb1da9b 22-Oct-2015 c9s

Fix boolean conversion warnings

Summary:

The compiler complains and raised some warnings about boolean
conversion:

warning: address of 'ce->constants_table' will al

Fix boolean conversion warnings

Summary:

The compiler complains and raised some warnings about boolean
conversion:

warning: address of 'ce->constants_table' will always evaluate to
'true' [-Wpointer-bool-conversion]

Since the address of 'HashTable' will always evaluate to true. the
condition should be removed. The scope is kept for local variables.

Platform:

OS X 10.11

Compiler:

Apple LLVM version 7.0.0 (clang-700.0.72)
Target: x86_64-apple-darwin15.0.0
Thread model: posix

show more ...


Revision tags: php-7.0.1, php-5.6.15RC1, php-7.0.0RC5
# 60b43551 14-Oct-2015 Bob Weinand

Do not create a fake Closure for real Closures
That is solved by just returning the Closure as is, which is safe due to Closures being immutable objects


# 23b372d3 09-Oct-2015 Dmitry Stogov

Forbid "fake" closure rebinding


# 6876112c 04-Oct-2015 Xinchen Hui

Fixed the third one of (segfault in gc_remove_from_buffer())

This one maybe only used in debug mode, so no bug report and no test
script provided


# 4744eec7 04-Oct-2015 Xinchen Hui

Fixed bug #70631 (Another Segfault in gc_remove_from_buffer())


Revision tags: php-5.5.30, php-5.6.14, php-7.0.0RC4, php-5.6.14RC1, php-7.0.0RC3, php-5.6.13, php-7.0.0RC2, php-5.5.29, php-5.4.45, php-5.6.13RC1, php-7.0.0RC1
# 715d5d28 13-Aug-2015 Dmitry Stogov

Get rid of implicit type casting in GC_*() macros in Zend/zend_types.h.
This prevented compilation warnings and disclosed few incorrect usages in Zend/zend_vm_def.h and ext/dom/xpath.c.
Now e

Get rid of implicit type casting in GC_*() macros in Zend/zend_types.h.
This prevented compilation warnings and disclosed few incorrect usages in Zend/zend_vm_def.h and ext/dom/xpath.c.
Now explicit type casting may be required on call site.
This may break some C extension code, but it shoulfn't be a problem to add explicit casting.

show more ...


Revision tags: php-5.6.12, php-5.5.28, php-7.0.0beta3, php-5.4.44, php-5.6.12RC1, php-7.0.0beta2, php-7.0.0beta1, php-5.6.11, php-5.5.27, php-5.4.43
# 907476f3 05-Jul-2015 Aaron Piotrowski

Convert E_ERROR to thrown Error in extensions


# ed1b6487 03-Jul-2015 Aaron Piotrowski

Switch position of ce in exception ce variable names


# a812a74c 03-Jul-2015 Aaron Piotrowski

Change zend_exception_get_default() to zend_exception_ce


# 4a2e40bb 30-Jun-2015 Dmitry Stogov

Use ZSTR_ API to access zend_string elements (this is just renaming without semantick changes).


Revision tags: php-5.6.11RC1, php-5.5.27RC1
# 28d7bb97 23-Jun-2015 Rasmus Lerdorf

Fix more proto comments


Revision tags: php-7.0.0alpha2
# 44b7489f 16-Jun-2015 Nikita Popov

Drop now superflous check for VIA_TRAMPOLINE

This is not handled by USE_ARG_INFO.


12345678910>>...31