Closed ghost closed 7 years ago
@icefapper
Import and Export is broken. Does not handle early errors. E.g
var a, b; export default a; export { b as default }; export { a, b as c } export default 1; export default 2; export { a as default } export { a }
var a, b; export default a; export { b as default };
export { a, b as c }
export default 1; export default 2;
export { a as default }
export { a }
All this fails. See also https://github.com/JazzleWare/jazzle-parser/issues/12
And does not handle
({a({e: a.b}){}}) (function* ({e: a.b}) {}) (function ({e: a.b}) {})
And most of the todos in the code haven't been fixed for months
@icefapper
Import and Export is broken. Does not handle early errors. E.g
var a, b; export default a; export { b as default };
export { a, b as c }
export default 1; export default 2;
export { a as default }
export { a }
All this fails. See also https://github.com/JazzleWare/jazzle-parser/issues/12
And does not handle
And most of the todos in the code haven't been fixed for months