[php] Simplify naming of overloaded method wrappers

The underlying wrapper function is now always named using
ZEND_NAMED_FUNCTION even if it's a method (in PHP a function and
a method only differ in how they're used).
This commit is contained in:
Olly Betts 2021-05-12 15:05:09 +12:00
commit 8dadbcc744

View file

@ -1193,11 +1193,7 @@ public:
}
}
} else {
if (class_name && Cmp(Getattr(n, "storage"), "friend") != 0) {
Printv(f->def, "PHP_METHOD(", prefix, class_name, ",", overloadwname, ") {\n", NIL);
} else {
Printv(f->def, "ZEND_NAMED_FUNCTION(", overloadwname, ") {\n", NIL);
}
Printv(f->def, "ZEND_NAMED_FUNCTION(", overloadwname, ") {\n", NIL);
}
emit_parameter_variables(l, f);
@ -1365,13 +1361,7 @@ public:
if (!overloaded) {
Setattr(n, "wrap:name", wname);
} else {
if (class_name && Cmp(Getattr(n, "storage"), "friend") != 0) {
String *m_call = NewStringEmpty();
Printf(m_call, "ZEND_MN(%s_%s)", class_name, overloadwname);
Setattr(n, "wrap:name", m_call);
} else {
Setattr(n, "wrap:name", overloadwname);
}
Setattr(n, "wrap:name", overloadwname);
}
Setattr(n, "wrapper:method:name", wname);