rfc:closures:removal-of-this

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revisionBoth sides next revision
rfc:closures:removal-of-this [2009/01/26 12:27] – created cseilerrfc:closures:removal-of-this [2009/01/26 22:25] – added tidbits on reflection cseiler
Line 47: Line 47:
 ===== Reflection ===== ===== Reflection =====
  
-TBD.+Reflection was changed a bit in order to make sure Non-OOP-Closures are supported consistently. 
 + 
 +==== getClosure() / getClosureThis() removal ==== 
 + 
 +**Removed** ''ReflectionFunction::getClosure()'' and ''ReflectionFunction::getClosureThis()''. Removal of ''getClosureThis()'' is obvious (no $this stored in closures anymore). However, ''getClosure()'' must also be removed. This is due to the simple fact that in the previous implementation, one could do ''$reflectionMethod->getClosure ($object)'' (ReflectionMethod inherits from ReflectionFunction) and get a Closure that calls the method for the specific object, which means that a closure with bound $this was returned. 
 + 
 +Since allowing that for this special case would perhaps inhibit the possibility of later adding JS-like $this binding to closures at all, it is best to simply remove the method and perhaps later re-add it when the type of implementation is clear. 
 + 
 +==== Modified ReflectionFunction / ReflectionMethod dynamic ==== 
 + 
 +In the original RFC, ReflectionMethod also accepted solely $closure as a parameter to the constructor and implied ''_invoke'' as method name. Those however only gave access to the dynamic invoke method and not the closure method itself. Somewhat later, somebody added the possibility to simply use $closure as parameter for ReflectionFunction. 
 + 
 +This is now consolidated: 
 + 
 +  - ReflectionFunction now accepts $closure as sole parameter 
 +  - ReflectionMethod now does not automatically infer ''_invoke'' as method name for single objects that were passed. 
 + 
 +Thus, a ''new ReflectionFunction($closure)'' has access to the real user-defined closure details and ''new ReflectionMethod($closure, "_invoke")'' has access to the internal auto-generated handler method. 
 + 
 +==== isClosure ==== 
 + 
 +isClosure now detects a closure according to the flags (fn_flags & ZEND_ACC_CLOSURE). 
rfc/closures/removal-of-this.txt · Last modified: 2017/09/22 13:28 by 127.0.0.1