javascript-jsx.tmbundle
javascript-jsx.tmbundle copied to clipboard
Parsing issue with comparison operator
This is valid code:
for (var i=0; i<10; i++); // (1)
(a
<b // (2)
);
(<a
>
</a>);
(<a>
a<b></b>
</a>);
The first and the third line currently break parsing.