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
This doesn't round trip:
(asm (disasm (fn [] (def foo (fn [one two] one)) (foo 100 200))))
This trips up this line in the bytecode verifier about slotcounts:
janet/src/core/bytecode.c
Line 409 in 6032a6d
This example does work when foo returns two instead of one:
two
one
(asm (disasm (fn [] (def foo (fn [one two] two)) (foo 100 200))))
The text was updated successfully, but these errors were encountered:
Fixed in 9e6abbf
Sorry, something went wrong.
No branches or pull requests
This doesn't round trip:
This trips up this line in the bytecode verifier about slotcounts:
janet/src/core/bytecode.c
Line 409 in 6032a6d
This example does work when foo returns
two
instead ofone
:The text was updated successfully, but these errors were encountered: