E0234: 'protected' is not allowed in JavaScript
JavaScript does not support protected properties. It is a syntax error to
declare a class property as protected
:
To fix this error, remove the protected
keyword, and consider putting a _
prefix in the property name to signal it should not be called outside the class:
Introduced in quick-lint-js version 2.6.0.