History log of /PHP-7.3/ext/reflection/php_reflection.c (Results 126 – 150 of 698)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 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.


# 3180b8e1 16-Jun-2015 Dmitry Stogov

Fixed bug #69802 (Reflection on Closure::__invoke borks type hint class name) (onr more problem)


# ed84bff4 16-Jun-2015 Dmitry Stogov

Complete fix for problems related to bug #69802


# 33e71d5c 15-Jun-2015 Dmitry Stogov

Fixed bug #69802 (Reflection on Closure::__invoke borks type hint class name)


# 1c754f0b 12-Jun-2015 Dmitry Stogov

Get rid of more ZVAL_ZVAL() macros


# 8e10e8f9 12-Jun-2015 Dmitry Stogov

Avoid zval duplication in ZVAL_ZVAL() macro (it was necessary only in few places).
Switch from ZVAL_ZVAL() to simpler macros where possible (it makes sense to review remaining places)


Revision tags: php-5.5.26, php-7.0.0alpha1, php-5.6.10, php-5.4.42
# ec281fef 08-Jun-2015 Matteo Beccati

Reflection support for type hints and return types


Revision tags: POST_PHP7_NSAPI_REMOVAL, PRE_PHP7_NSAPI_REMOVAL, php-5.6.10RC1, php-5.5.26RC1, php-5.5.25, php-5.6.9, php-5.4.41, php-5.6.9RC1, php-5.5.25RC1, php-5.6.8, php-5.5.24, php-5.4.40, php-5.6.8RC1, php-5.5.24RC1, php-5.6.7, php-5.5.23, php-5.4.39, php-5.6.7RC1, php-5.5.23RC1, POST_PHP7_EREG_MYSQL_REMOVALS, PRE_PHP7_EREG_MYSQL_REMOVALS, php-5.6.6, php-5.5.22, php-5.4.38
# cf8898fb 15-Feb-2015 Sara Golemon

Merge remote-tracking branch 'pollita/reflection.typehint'

Conflicts:
ext/reflection/php_reflection.c
ext/reflection/tests/ReflectionExtension_getClasses_basic.phpt


# 104f6c5e 18-May-2015 Reeze Xia

Avoid possible uninitialized value assignment


# aa3c7aa4 14-May-2015 Bob Weinand

Add ReflectionGenerator class


# 8bdec7a2 13-May-2015 olshevskiy87

fix typos

Signed-off-by: olshevskiy87 <olshevskiy87@bk.ru>


# c0c68a94 05-May-2015 Nikita Popov

Fix build


12345678910>>...28