mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-09 21:50:50 +00:00
18 lines
430 B
JavaScript
18 lines
430 B
JavaScript
![]() |
// -*- mode: js-jsx; -*-
|
|||
|
|
|||
|
// Local Variables:
|
|||
|
// indent-tabs-mode: nil
|
|||
|
// js-indent-level: 2
|
|||
|
// End:
|
|||
|
|
|||
|
// The following tests go below any comments to avoid including
|
|||
|
// misindented comments among the erroring lines.
|
|||
|
|
|||
|
// Don’t misinterpret equality operators as JSX.
|
|||
|
for (; i < length;) void 0
|
|||
|
if (foo > bar) void 0
|
|||
|
|
|||
|
// Don’t even misinterpret unary operators as JSX.
|
|||
|
if (foo < await bar) void 0
|
|||
|
while (await foo > bar) void 0
|