cur_method_ref   4220 Zend/zend_compile.c 	zend_trait_method_reference *cur_method_ref;
cur_method_ref   4232 Zend/zend_compile.c 				cur_method_ref = cur_precedence->trait_method;
cur_method_ref   4233 Zend/zend_compile.c 				if (!(cur_precedence->trait_method->ce = zend_fetch_class(cur_method_ref->class_name, cur_method_ref->cname_len,
cur_method_ref   4235 Zend/zend_compile.c 					zend_error_noreturn(E_COMPILE_ERROR, "Could not find trait %s", cur_method_ref->class_name);
cur_method_ref   4240 Zend/zend_compile.c 				lcname = zend_str_tolower_dup(cur_method_ref->method_name,
cur_method_ref   4241 Zend/zend_compile.c 											  cur_method_ref->mname_len);
cur_method_ref   4242 Zend/zend_compile.c 				method_exists = zend_hash_exists(&cur_method_ref->ce->function_table,
cur_method_ref   4244 Zend/zend_compile.c 												 cur_method_ref->mname_len + 1);
cur_method_ref   4249 Zend/zend_compile.c 							   cur_method_ref->ce->name,
cur_method_ref   4250 Zend/zend_compile.c 							   cur_method_ref->method_name);
cur_method_ref   4275 Zend/zend_compile.c 								   cur_method_ref->method_name,
cur_method_ref   4294 Zend/zend_compile.c 				cur_method_ref = ce->trait_aliases[i]->trait_method;
cur_method_ref   4295 Zend/zend_compile.c 				if (!(cur_method_ref->ce = zend_fetch_class(cur_method_ref->class_name, cur_method_ref->cname_len, ZEND_FETCH_CLASS_TRAIT|ZEND_FETCH_CLASS_NO_AUTOLOAD TSRMLS_CC))) {
cur_method_ref   4296 Zend/zend_compile.c 					zend_error_noreturn(E_COMPILE_ERROR, "Could not find trait %s", cur_method_ref->class_name);
cur_method_ref   4298 Zend/zend_compile.c 				zend_check_trait_usage(ce, cur_method_ref->ce TSRMLS_CC);
cur_method_ref   4301 Zend/zend_compile.c 				lcname = zend_str_tolower_dup(cur_method_ref->method_name,
cur_method_ref   4302 Zend/zend_compile.c 						cur_method_ref->mname_len);
cur_method_ref   4303 Zend/zend_compile.c 				method_exists = zend_hash_exists(&cur_method_ref->ce->function_table,
cur_method_ref   4304 Zend/zend_compile.c 						lcname, cur_method_ref->mname_len + 1);
cur_method_ref   4308 Zend/zend_compile.c 					zend_error_noreturn(E_COMPILE_ERROR, "An alias was defined for %s::%s but this method does not exist", cur_method_ref->ce->name, cur_method_ref->method_name);