xp-framework / compiler

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

Arrow functions with blocks #49

Closed thekid closed 6 years ago

thekid commented 6 years ago
// Works today
$f= ($req, $res) ==> $res->answer(202);

// New
$f= ($req, $res) ==> {
  // ...
  throw new Error(404, 'Not found');
};

Consistent with https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions

thekid commented 6 years ago

Will be available in 2.9.0