E0298: abstract methods cannot be marked 'async'
The async
keyword on methods changes the body of that method. Abstract methods
do not have bodies. Therefore, async
does not make sense on abstract methods,
and it is a syntax error to write it:
To fix this error, remove the async
keyword:
Introduced in quick-lint-js version 2.10.0.