Set field for method receiver.
| 32 | |
| 33 | // Set field for method receiver. |
| 34 | static void RECEIVER_SET(zval *object, zval *member, zval *value) { |
| 35 | engine_receiver *this = RECEIVER_THIS(object); |
| 36 | engineReceiverSet(this, Z_STRVAL_P(member), (void *) value); |
| 37 | } |
| 38 | |
| 39 | // Check if field exists for method receiver. |
| 40 | static int RECEIVER_EXISTS(zval *object, zval *member, int check) { |
nothing calls this directly
no test coverage detected