Баг с определением регионов в конструкции try.. catch

Issue #19 resolved
Develops repo owner created an issue

Код для проверки

try
{
  return 1;
}
catch ( Exception $e )
{
  if ($v)
  {
     throw $e;
  }
}

Результат:

try {
        return 1;
}
catch (Exception $e) {
PHP Warning:  assert(): Assertion "$blockLast <= $range[1]" failed in C:\xcache\Decompiler.class.php on line 1431

Warning: assert(): Assertion "$blockLast <= $range[1]" failed in C:\xcache\Decompiler.class.php on line 1431
int(6)
int(5)
        if ($v) {
                throw $e;
        }
}

?>

Comments (1)

  1. Log in to comment