new_modifier     1510 Zend/zend_compile.c int zend_do_verify_access_types(const znode *current_access_type, const znode *new_modifier) /* {{{ */
new_modifier     1513 Zend/zend_compile.c 		&& (Z_LVAL(new_modifier->u.constant) & ZEND_ACC_PPP_MASK)) {
new_modifier     1517 Zend/zend_compile.c 		&& (Z_LVAL(new_modifier->u.constant) & ZEND_ACC_ABSTRACT)) {
new_modifier     1521 Zend/zend_compile.c 		&& (Z_LVAL(new_modifier->u.constant) & ZEND_ACC_STATIC)) {
new_modifier     1525 Zend/zend_compile.c 		&& (Z_LVAL(new_modifier->u.constant) & ZEND_ACC_FINAL)) {
new_modifier     1528 Zend/zend_compile.c 	if (((Z_LVAL(current_access_type->u.constant) | Z_LVAL(new_modifier->u.constant)) & (ZEND_ACC_ABSTRACT | ZEND_ACC_FINAL)) == (ZEND_ACC_ABSTRACT | ZEND_ACC_FINAL)) {
new_modifier     1531 Zend/zend_compile.c 	return (Z_LVAL(current_access_type->u.constant) | Z_LVAL(new_modifier->u.constant));
new_modifier      515 Zend/zend_compile.h int zend_do_verify_access_types(const znode *current_access_type, const znode *new_modifier);