javascript-jsx.tmbundle icon indicating copy to clipboard operation
javascript-jsx.tmbundle copied to clipboard

Parsing issue with comparison operator

Open jjeising opened this issue 9 years ago • 0 comments

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.

jjeising avatar Aug 16 '16 22:08 jjeising