xp-framework / compiler

Compiles future PHP to today's PHP.
19 stars 0 forks source link

Remove support for Hack arrow functions #69

Closed thekid closed 5 years ago

thekid commented 5 years ago

Deprecated in favor of https://wiki.php.net/rfc/arrow_functions_v2 in 3.0.0.

// No longer supported:
$r= () ==> true;

// Now the only syntax supported:
$r= fn() => true;

See also #60