```js const query = `SELECT A FROM tbl1 where; SELECT 1; SELECT B FROM tbl1 WHERE;` const stmt = sqlparse(query) console.log(stmt[0].exception) ``` Results to `null` while it should be an exception. This only happens in JS target, not python.