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
Direct execution, works as expected:
vlorentz@gommier:~/js/LambdaS5/tests$ echo "print('foo\nbar')" > /tmp/tmp.js && ../obj/s5.d.byte -desugar /tmp/tmp.js -env ../envs/es5.env -apply -eval foo bar undefined
However, if I write desugared code to a temporary file, and then execute that temporary file, it does not display the same value:
vlorentz@gommier:~/js/LambdaS5/tests$ echo "print('foo\nbar')" > /tmp/tmp.js && ./s5-desugar /tmp/tmp.js > /tmp/tmp.ljs vlorentz@gommier:~/js/LambdaS5/tests$ ../obj/s5.d.byte /tmp/tmp.ljs -env ../envs/es5.env -apply -eval foo\nbar undefined
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Direct execution, works as expected:
However, if I write desugared code to a temporary file, and then execute that temporary file, it does not display the same value:
The text was updated successfully, but these errors were encountered: