Closed
Description
Previously the following would fail to emit due to parsing errors:
var foo = 123 123;
Now it does emit JS:
var foo = 123;
123;
What's more is that something crazy like:
2nof234@#$@#$&3421834701234!@#$!&@#$"!H#@$LK!N@#LSOD*F&(O@#*$&@#$1)"YH!@#$(O*&!@#$)
does an js emit:
2;
nof234;
$;
$ & 3421834701234;
!;
$;
! & ;
$;
"!H#@$LK!N@#LSOD*F&(O@#*$&@#$1)";
YH;
!;
$(O * & !, $);
Are you guys aware of anything that will block an emit now? I just want this for a test ❤️