Given unclosed.cjsx: ``` html 1 <div> 2 <div> 3 </div> ``` Running ``` sh $ cjsx unclosed.cjsx ``` Yields ``` sh SyntaxError: Unexpected end of input: unclosed CJSX_EL ``` With no line numbers. For comparison, the latest [Babel-powered jsx yields](https://babeljs.io/repl/#?experimental=false&evaluate=true&loose=false&spec=false&code=%3Cdiv%3E%0A%20%20%3Cdiv%3E%0A%3C%2Fdiv%3E%0A): ``` sh Unterminated JSX contents (3:6) 1 | <div> 2 | <div> > 3 | </div> | ^ ``` Probably related to #28