cur_method_ref   1273 Zend/zend_inheritance.c 	zend_trait_method_reference *cur_method_ref;
cur_method_ref   1285 Zend/zend_inheritance.c 				cur_method_ref = cur_precedence->trait_method;
cur_method_ref   1286 Zend/zend_inheritance.c 				if (!(cur_precedence->trait_method->ce = zend_fetch_class(cur_method_ref->class_name,
cur_method_ref   1288 Zend/zend_inheritance.c 					zend_error_noreturn(E_COMPILE_ERROR, "Could not find trait %s", ZSTR_VAL(cur_method_ref->class_name));
cur_method_ref   1293 Zend/zend_inheritance.c 				lcname = zend_string_tolower(cur_method_ref->method_name);
cur_method_ref   1294 Zend/zend_inheritance.c 				method_exists = zend_hash_exists(&cur_method_ref->ce->function_table,
cur_method_ref   1300 Zend/zend_inheritance.c 							   ZSTR_VAL(cur_method_ref->ce->name),
cur_method_ref   1301 Zend/zend_inheritance.c 							   ZSTR_VAL(cur_method_ref->method_name));
cur_method_ref   1325 Zend/zend_inheritance.c 								   ZSTR_VAL(cur_method_ref->method_name),
cur_method_ref   1344 Zend/zend_inheritance.c 				cur_method_ref = ce->trait_aliases[i]->trait_method;
cur_method_ref   1345 Zend/zend_inheritance.c 				if (!(cur_method_ref->ce = zend_fetch_class(cur_method_ref->class_name, ZEND_FETCH_CLASS_TRAIT|ZEND_FETCH_CLASS_NO_AUTOLOAD))) {
cur_method_ref   1346 Zend/zend_inheritance.c 					zend_error_noreturn(E_COMPILE_ERROR, "Could not find trait %s", ZSTR_VAL(cur_method_ref->class_name));
cur_method_ref   1348 Zend/zend_inheritance.c 				zend_check_trait_usage(ce, cur_method_ref->ce);
cur_method_ref   1351 Zend/zend_inheritance.c 				lcname = zend_string_tolower(cur_method_ref->method_name);
cur_method_ref   1352 Zend/zend_inheritance.c 				method_exists = zend_hash_exists(&cur_method_ref->ce->function_table,
cur_method_ref   1357 Zend/zend_inheritance.c 					zend_error_noreturn(E_COMPILE_ERROR, "An alias was defined for %s::%s but this method does not exist", ZSTR_VAL(cur_method_ref->ce->name), ZSTR_VAL(cur_method_ref->method_name));