Skip to content
New issue

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

Fix error format in Ljs_eval.get_prop. #43

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

progval
Copy link
Contributor

@progval progval commented Jun 27, 2014

There was a parenthesing issue in the failwith message oin get_prop.

Before the patch:

vlorentz@gommier:~/js/LambdaS5/tests(master)$ echo "{[#proto: 'Object']}['__proto__']" | ../obj/s5.d.byte -load init.heap /dev/stdin -continue-s5-eval

Uncaught error: "[interp] (/dev/stdin:1:0-33) get_prop on a non-object.  The expression was (get-prop "

Fatal error: exception Failure("Runtime error")

After the patch:

vlorentz@gommier:~/js/LambdaS5/tests(master)$ echo "{[#proto: 'Object']}['__proto__']" | ../obj/s5.d.byte -load init.heap /dev/stdin -continue-s5-eval

Uncaught error: "[interp] (/dev/stdin:1:0-33) get_prop on a non-object.  The expression was (get-prop "Object" __proto__)"

Fatal error: exception Failure("Runtime error")

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant