We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Verified that the latest eshost is installed (3.8.0 at time of writing) and the jsvu binary is up-to-date (latest):
> eshost -ie "42" ## Source print(42) #### jsvu-d8 SyntaxError: Unexpected end of input
The same script runs just fine directly under the jsvu d8 binary.
>where d8 C:\Users\doilij\.jsvu\d8.cmd >d8 -e "print(42)" 42
Is there some d8 support change that is needed in eshost-cli or eshost or both?
The text was updated successfully, but these errors were encountered:
Looks like this has been resolved in a newer build of v8.
Sorry, something went wrong.
I am often seeing the same issue when using eshost, but not when using d8 directly. Simple example:
d8
$ eshost -x 'foo = 42; print(foo)' #### Chakra 42 #### V8 --harmony SyntaxError: Unexpected end of input #### JavaScriptCore 42 #### V8 SyntaxError: Unexpected end of input #### SpiderMonkey 42 #### XS 42 $ v8 -e 'foo = 42; print(foo)' 42
Can we reopen this issue?
No branches or pull requests
Verified that the latest eshost is installed (3.8.0 at time of writing) and the jsvu binary is up-to-date (latest):
The same script runs just fine directly under the jsvu d8 binary.
Is there some d8 support change that is needed in eshost-cli or eshost or both?
The text was updated successfully, but these errors were encountered: