E0104: missing body for while loop
while
loops require a body, which must be a statement or {
}
surrounding a
list of statements. It is a syntax error to omit the body of a while
loop:
To fix this error, write the body of the while
loop:
Alternatively, make the while
loop a do
-while
loop:
Introduced in quick-lint-js version 0.2.0.