Closed isseium closed 8 years ago
Hi, @shinout.
Please try to compile following code in alloy.js.
var hoge = "あいうえお";
A simulator shows me "Unexpected EOF";
"Unexpected EOF"
I think same reason as Unexpected token ';' bug (I reported @shinout a few days ago.)
Unexpected token ';'
FYI:
In my project, we use multibyte literal. I tried to compile after following process in my project.
$ LC_ALL=C grep -v '[^ -~]' alloy.js > hoge.js # remove multibyte lines $ mv hoge.js alloy.js
And then Faster does works!
Thanks for report. Also reproducted in my environment. I'll fix it.
fixed in 07d0396b275474fa55751bdc1a66f383a130cd2b
Thanks! I just tried to compile. It looks good to me!!!
Hi, @shinout.
Please try to compile following code in alloy.js.
A simulator shows me
"Unexpected EOF"
;I think same reason as
Unexpected token ';'
bug (I reported @shinout a few days ago.)FYI:
In my project, we use multibyte literal. I tried to compile after following process in my project.
And then Faster does works!