2
0

Closure.hx 296 B

123456789101112
  1. package php;
  2. import haxe.extern.Rest;
  3. /**
  4. @see http://php.net/manual/en/class.closure.php
  5. **/
  6. @:native('Closure')
  7. extern class Closure {
  8. public function bindTo( newthis:{}, newscope:Dynamic = "static" ) : Closure;
  9. public function call ( newthis:{}, args:Rest<Dynamic> ) : Dynamic;
  10. }