E0135: expected variable name for 'catch'
A try
statement can have a catch
clause. The catch
clause can define a
variable for the caught exception. It is a syntax error to write a string
literal instead of a variable name between a catch
clause's parentheses:
To fix this error, replace the string literal with a variable name:
Introduced in quick-lint-js version 0.2.0.