We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove the empty catch block from code like this:
// Before try { foo(); } catch (undefined) {} finally { bar(); } // After try { foo(); } finally { bar(); } // Before try { foo(); } catch (e) {} finally { bar(); } // After try { foo(); } finally { bar(); }
The text was updated successfully, but these errors were encountered:
catch (undefined)
catch (error)
@lemonmade and I decided it's easier to do this in another code-mod transform instead of Decaf (for the sake of sanity).
Sorry, something went wrong.
Fixed in #153
xndyz
No branches or pull requests
Remove the empty catch block from code like this:
The text was updated successfully, but these errors were encountered: