I think it doesn't support sibling expression container like <div>{a}{b}</div> after rewrite.
I added following test case to test/tests-jsx.js. 'Unexpected token' error has occurred.
> node test/run.js
<div>{a}{b}</div> Unexpected token (1:11)
Normal parser: 899 tests run in 82ms; 1 failures.
Loose parser: 856 tests run in 117ms; all passed.
Total: 1755 tests run in 199ms; 1 failures.
npm ERR! Test failed. See above for more details.
npm ERR! not ok code 0
I think it doesn't support sibling expression container like
<div>{a}{b}</div>
after rewrite. I added following test case totest/tests-jsx.js
. 'Unexpected token' error has occurred.