xp-framework / compiler

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

Allow empty catch type to catch all exceptions #47

Closed thekid closed 6 years ago

thekid commented 6 years ago

Like #46 but only with "catch all" form - a shorthand for catch (\Throwable $e):

try {
  …
} catch ($e) {
  // Handle exception
}